Programming/Windows API2011. 12. 5. 21:32
CreateMutex를 이용한 다중 실행 방지 코드
//다중 실행 방지
//////////////////////////////////////////////////////////////////////////
HANDLE hMutexInstance;
hMutexInstance = CreateMutex(NULL, FALSE, "notepad");


if(hMutexInstance = NULL){
	return;
}

if(GetLastError() == ERROR_ALREADY_EXISTS){
	CloseHandle(hMutexInstance);
	return;
}
//////////////////////////////////////////////////////////////////////////

'Programming > Windows API' 카테고리의 다른 글

[퍼온글] 프로세스 보호 기술  (0) 2012.01.11
셀확장(Shell Extensions)  (0) 2011.11.24
Posted by Mocker