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

Hybrid View

  1. #1
    Join Date
    Apr 2004
    Posts
    61

    Viewing DLL Functions and parameters

    Hi. i was wondering if there is a way to view the functions inside a .dll AND the parameters.

    Example:

    FunctionBlah(char* Test)

    If there is no way to do this, is there a way to watch a program access a .dll and figure out the function parameters?

    Any help appreicated!!


  2. #2
    Join Date
    Aug 2002
    Location
    Cluj-Napoca,Romania
    Posts
    3,496

    Re: Viewing DLL Functions and parameters

    Open the DLL in Dependency Walker. The tool ships with Visual Studio. You'll get there a list of the functions in that DLL. I assume there should be some function that would allow you to achieve the same result programatically.
    Har Har

  3. #3
    Join Date
    Oct 2002
    Location
    Singapore
    Posts
    3,128

    Re: Viewing DLL Functions and parameters

    Dependency Walker does display the list of functions available in the dll. However, it doesn't show the parameter list. I am not sure if it is possible to find out the parameter list though.

  4. #4
    Join Date
    Apr 2004
    Posts
    61

    Re: Viewing DLL Functions and parameters

    hmmm tried dependency walker and a few other programs, but they dont show the function parameters

    anybody??

  5. #5
    Join Date
    Jun 2003
    Location
    India
    Posts
    118

    Re: Viewing DLL Functions and parameters

    Hi,

    Few days back i have asked same kind of question on this forum. Form somebody i got the response that it is possible through COM component.

    'underlay', what all other tools you have used?

    However, Dependancy walker is showing you only functions exported but not the parameter list. I working on this problem; may be i will reinitiate this thread once i finished.

    -PiyuNewe

  6. #6
    Join Date
    Aug 2002
    Location
    Cluj-Napoca,Romania
    Posts
    3,496

    Re: Viewing DLL Functions and parameters

    Quote Originally Posted by PiyuNewe
    I working on this problem; may be i will reinitiate this thread once i finished.
    Please do so. Lots of people do not bother providing feedback to the solutions they received.
    Har Har

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