Thread: Lisiting DLL

  1. #1
    Registered User cfrost's Avatar
    Join Date
    Apr 2004
    Posts
    119

    Cool Lisiting DLL

    How can i get the list of functions inside dll with the parameters they want ... Reply ASAP

  2. #2
    &TH of undefined behavior Fordy's Avatar
    Join Date
    Aug 2001
    Posts
    5,793
    I had to do this once...had to load the dll and then do all sorts of nasty PE offset stuff to find the export table...bleu!

    Then again you could always try this little lib distributed by Microsoft - http://msdn.microsoft.com/library/de..._functions.asp

  3. #3
    Yes, my avatar is stolen anonytmouse's Avatar
    Join Date
    Dec 2002
    Posts
    2,544
    There is no easy way to get parameter information from a normal (non-COM) DLL. You need the documentation or a lot of time with a disassembler.

    If you are just looking for a tool to get the exported function names from a DLL, rather than a code solution, you can have a look at Depends.exe (included with platform SDK and VC++) or pedump.exe (available for download on the net or with LCC-WIN).

    Once you have a function name, you may get help from a good search engine.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. non-MFC DLL with MFC app question.
    By Kempelen in forum Windows Programming
    Replies: 10
    Last Post: 08-20-2008, 07:11 AM
  2. dll communicating between each other
    By cloudy in forum C++ Programming
    Replies: 5
    Last Post: 06-17-2005, 02:20 AM
  3. DLL and std::string woes!
    By Magos in forum C++ Programming
    Replies: 7
    Last Post: 09-08-2004, 12:34 PM
  4. C++ .NET - "inconsistent dll linkage" - What's that?
    By BrianK in forum Windows Programming
    Replies: 2
    Last Post: 03-16-2004, 10:16 AM
  5. .lib vs .h vs .dll
    By Shadow12345 in forum C++ Programming
    Replies: 13
    Last Post: 01-01-2003, 05:29 AM