-
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
-
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.
-
Re: External DLLs
Is there is any way to get/show all the aruments of procedures/functions.
Pl. help..
-
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...