简体   繁体   中英

How do I find out entry-point function in C++ dll project?

I built one project from GitHub. The project was built successfully, but I can't find the entry-point function in its code. The project settings are like this:

图片

How do I find out the entry-point function in a C++ DLL project?

Per /ENTRY (Entry-Point Symbol) :

By default, the starting address is a function name from the C run-time library. The linker selects it according to the attributes of the program...

Unless specified differently, the entry point for a DLL in a MSVC++ project is _DllMainCRTStartup() , which calls DllMain() in the project's code, if it exists.

See DLLs and Visual C++ run-time library behavior on MSDN for more details.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM