본문 바로가기

My Study/Function

GetModuleHandle

HMODULE WINAPI GetModuleHandle(
  __in_opt  LPCTSTR lpModuleName
);

lpModuleName : 모듈 이름

현재 메모리에 매핑되어 있는 것중  찾을 뿐
그러므로 해당 모듈이 존재하지 않으면 실패
모듈의 핸들을 얻는게 주 목적
GetModuleHandle을 사용하는 경우 절대 FreeLibrary를 하지말자

인자로 널이 전달되면 해당 프로그램의 ImageBase의 주소를 가져온다.

'My Study > Function' 카테고리의 다른 글

TerminateProcess  (0) 2010.02.24
ExitProcess  (0) 2010.02.24
KiFastCallEntry  (0) 2010.02.24
KiFastSystemCall  (0) 2010.02.24
FreeLibrary  (0) 2010.02.24