동적 라이브러리에서 동적 라이브러리의 모듈 핸들 가져오기

1325 단어
/****************************************************************************
     HMODULE GetCurrentModule()    dll     。
    
TCHAR lib_name[MAX_PATH]; 
::GetModuleFileName( GetCurrentModule(), lib_name, MAX_PATH );
     dll    
 
Most DLL developers have faced the challenge of detecting a HMODULE/HINSTANCE handle 
within the module you're running in. It may be a difficult task if you wrote the DLL 
without a DLLMain() function or you are unaware of its name. For example:
Your DLL was built without ATL/MFC, so the DLLMain() function exists, 
but it's hidden from you code and you cannot access the hinstDLL parameter. 
You do not know the DLL's real file name because it could be renamed by everyone, 
so GetModuleHandle() is not for you.
This small code can help you solve this problem:
****************************************************************************/
#if _MSC_VER >= 1300    // for VC 7.0
// from ATL 7.0 sources
#ifndef _delayimp_h
extern "C" IMAGE_DOS_HEADER __ImageBase;
#endif
#endif
 
static
HMODULE GetCurrentModule()
{
#if _MSC_VER (mbi.AllocationBase);
#else    // VC 7.0
    // from ATL 7.0 sources
    return reinterpret_cast(&__ImageBase);
#endif
}

  
전재 대상:https://www.cnblogs.com/manongdashu/p/10405621.html

좋은 웹페이지 즐겨찾기