// dllmain.cpp : 定义 DLL 应用程序的入口点。 #include "stdafx.h" const char* g_szMouldPath = nullptr; BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: { int nMaxPathName = 4096; // Max length of file name path char* pName; //当前模块完整路径 pName = new char[nMaxPathName]; if (GetModuleFileName(hModule, pName, nMaxPathName - 1)) { g_szMouldPath = pName; } else { printf("\r\n Get mould path failed %d \r\n", GetLastError()); } break; } case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; }