Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find DLL EntryPoint?

Tags:

c#

dll

simple question: How I can find out commands for a DLLImport in C#.Net and / or the Entry Points of the DLL?

Background: I will use the MobileDevice-Libary from ITunes to send commands to an Iphone. I know round about 90% of the DLL-Commands from another open source project, but there are still 10% left, and I need a command of this 10%.

like image 388
PassionateDeveloper Avatar asked Mar 22 '10 10:03

PassionateDeveloper


2 Answers

Dependency Walker can list all exports for a DLL.

like image 192
Arve Avatar answered Sep 23 '22 11:09

Arve


These days you want to use Dependencies

https://github.com/lucasg/Dependencies

like image 26
Black Avatar answered Sep 21 '22 11:09

Black