How to export all functions in Visual Studio ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kenk
    New Member
    • Nov 2006
    • 13

    How to export all functions in Visual Studio ?

    Hi,

    Do you know how to export all functions from Visual Studio project (dll for example). I want to export all functions even those which are not marked as intended to export.
    There is some compiler/linker macro maybe?

    Thanks in advance!

    M.
  • sivadhas2006
    New Member
    • Nov 2006
    • 142

    #2
    Hi,

    To export the functions try this..

    Code:
    __declspec( dllexport ) void func();
    Regards,
    M.Sivadhas.

    Comment

    • kenk
      New Member
      • Nov 2006
      • 13

      #3
      That's the problem. I want to ignore all (dllexport) symbols and export all public functions from my component.

      M.

      Comment

      Working...