Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 DLL 中的 Win32 API 来处理它,因为它非常混乱,但我只知道如何使用 WinMain 调用它。有没有办法可以调用方法来调用窗口?
在您的 DLL 中,您可以声明入口点:
BOOL WINAPI DllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { // use WINAPI }