본문 바로가기

My Study/Function

LoadLibrary

HMODULE WINAPI LoadLibrary(
  __in  LPCTSTR lpFileName
);
특정 라이브러리 모듈 핸들 구하는 함수

lpFileName : The name of the module. DLL이름

If the function succeeds, the return value is a handle to the module.
함수 호출이 성공하게 되면 모듈의 핸들을 반환합니다.

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

KiFastSystemCall  (0) 2010.02.24
FreeLibrary  (0) 2010.02.24
GetTickCount  (0) 2010.02.24
OpenProcess  (0) 2010.02.24
ReadProcessMemory  (0) 2010.02.24