CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 1999
    Location
    US, Florida
    Posts
    817

    Extracting APIs from a DLL

    How can I "extract" APIs from a DLL, is there any program for that or what? Maybe it's impossible???

    Thanks


  2. #2
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: Extracting APIs from a DLL

    Guess we're the only people around on Christmas day huh ? Well happy Xmas for one.

    It is possible to list the contents of a DLL using the standard 'Quick View' option that gets installed with Visual Studio. Although there is no way to see what parameters are required for each call (I think you can find out how many there are - but not their types or whether they are byval/ref). I remember seeing a very good example program on the CodeGuru MFC site that listed all function calls in a DLL by name if you're interested.


    Chris Eastwood

    CodeGuru - the website for developers
    http://codeguru.developer.com/vb

  3. #3
    Join Date
    Aug 1999
    Location
    US, Florida
    Posts
    817

    Re: Extracting APIs from a DLL

    LOL, I guess we are the only people , happy Xmas to you too Chris. Hmm, so where can I find that program from CodeGuru MFC?

    Thanks


  4. #4
    Join Date
    Apr 1999
    Location
    Rotterdam, Netherlands
    Posts
    278

    Re: Extracting APIs from a DLL

    "Guess we're the only people around on Christmas day huh ? Well happy Xmas for one."

    I was, but needed both hands for my turkey... ;-)
    (and after that I was so full I fell asleep... :-)

    Crazy D :-)
    "One ring rules them all"

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