Retreving function structures from DLL's (PInvoke)

  • Thread starter Thread starter Prasad Dannani
  • Start date Start date
P

Prasad Dannani

Hi,
I am a c# programmer. New to PInvoke. From MSDN i came to know using link
or dumpbin exe's we can retreive all the functions in dll's.

Can any one help me on how to retreive the api function names including
there structures ( Ex: public static extern int MessageBox(int hWnd, String
text, String caption, uint type))
 
Thanks Nathan for your reply.


In www.pinvoke.net he is placed all the function structures available in
windows dll's.

I am able to know all the function names (with out signatures) using .net
exe's. Is there anyway to get the comlete function signatures using any tool
or in some other way.
 
Back
Top