win32单例执行
Posted icyvalley
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了win32单例执行相关的知识,希望对你有一定的参考价值。
1 BOOL IsAlreadyRun() 2 3 { 4 5 HANDLE hMutex = NULL; 6 hMutex = ::CreateMutex(NULL,FALSE,"Application"); 7 if(hMutex) 8 { 9 if(ERROR_ALREADY_EXIST==::GetLastError()) 10 { 11 return TRUE; 12 } 13 } 14 return FALSE; 15 } 16 17
以上是关于win32单例执行的主要内容,如果未能解决你的问题,请参考以下文章