dll路径问题

dll路径问题
::GetModuleFileName(AfxGetInstanceHandle(), strDLLPath, _MAX_PATH);
这样获取到的是调用的exe的路径.

定义个全局的
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
::GetModuleFileName((HINSTANCE)&__ImageBase, strDLLPath, _MAX_PATH);

你可能感兴趣的:(dll路径问题)