How to find EntryPoint DLL?

simple question: How can I find out commands for DLLImport in C # .Net and / or DLL entry points?

Background: I will use iTunes's MobileDevice-Libary to send commands to Iphone. I know about 90% of the DLL commands from another open source project, but 10% remain, and I need a 10% team.

+4
source share
4 answers

Dependency Walker can display all exported files for a DLL.

+8
source

You can use the pinvoke helper helper, which is included in CLRInsideOut2008_01.exe

I used it a lot to help with pinvoke definitions, which he saved me a lot of time.

0
source

Open the DLL in a good text editor (e.g. UltraEdit or so). You will read all the functions in the panel on the right in the ASCII panel. If you already know several functions, do ctrl + f to find this, other implemented functions will be presented in the neighborhood. Grtz E

0
source

PE File Reader is a DLL (with source in C ++) that can read PE files and give you an entry point for the DLL.

The source is provided without using the GPL, so you can use the source and / or DLL in your project as you wish.

0
source

Source: https://habr.com/ru/post/1304754/


All Articles