How to find DLL EntryPoint?

前端 未结 4 2066
予麋鹿
予麋鹿 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.

提交回复
热议问题