How to find DLL EntryPoint?

前端 未结 4 2043
予麋鹿
予麋鹿 2021-01-05 03:48

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 ITu

相关标签:
4条回答
  • 2021-01-05 04:18

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

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

    0 讨论(0)
  • 2021-01-05 04:35

    Dependency Walker can list all exports for a DLL.

    0 讨论(0)
  • 2021-01-05 04:43

    Open up the dll in a good text editor (like UltraEdit or so). You'll read all the functions on board on the right hand side ASCII pane. If you already know a few functions, do ctrl+f to find that one, the rest of the functions implemented will be presented in the neighborhood. Grtz E

    0 讨论(0)
  • 2021-01-05 04:44

    You can use the pinvoke interop assistant which is included in CLRInsideOut2008_01.exe

    I have used it a lot to help with pinvoke definitions it has saved me a lot of time.

    0 讨论(0)
提交回复
热议问题