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

Thread: External DLLs

  1. #1
    Guest

    External DLLs

    Hi,
    I am facing one problem regarding API's(Not exact API), Just here i am explaing what is the problem.
    I have one DLL (I think developed not in VB). Is there any way to see what are the functions and procedures exist in the DLL. I have one DLL of 16bit in the example application they are declared in the general module in the project. Now the problem is they were send the 32 bit DLL setup with some changes( may not). I want to see the what are the functions/procedures exist in the DLL so that i can declare in the module and i can use in the project. Any can help me ASAP....

    Regards,
    Ravi


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: External DLLs

    the EXEHDR utility that comes with VC 1.52 can list the names of all exported entry points of your 16 bit C DLL.
    It doesn't tell you anything about the arguments, though.


  3. #3
    Guest

    Re: External DLLs

    Is there is any way to get/show all the aruments of procedures/functions.
    Pl. help..



  4. #4
    Join Date
    Sep 1999
    Location
    Germany, Cologne
    Posts
    83

    Re: External DLLs

    I think there's no way to get the params...


    Normally you must have a header with all declarations for the functions...
    if you havn't... I think there's no way...


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