CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Guest

    How to view export functions of a DLL through VC++ code - Samantha

    Hi!
    Given a dll, I want to show all the export functions of that DLL in a list box. So kindly guide me as to how to extract the names of the export functions existing in the DLL. Assume that we have only the .DLL file with us without any of its dependency files.

    Thanks and regards
    Samantha.
    ([email protected])


  2. #2
    Join Date
    May 1999
    Posts
    6

    Re: How to view export functions of a DLL through VC++ code - Samantha

    try to do a quick view on the DLL or search the header file containing the functions


  3. #3
    Guest

    Re: How to view export functions of a DLL through VC++ code - Samantha

    Using dumpbin facility is also very good idea to get the actual
    function names which are exported from DLL


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured