码迷,mamicode.com
首页 > Windows程序 > 详细

win32单例执行

时间:2020-06-26 19:59:45      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:div   err   nbsp   handle   hand   error   执行   etl   ==   

 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单例执行

标签:div   err   nbsp   handle   hand   error   执行   etl   ==   

原文地址:https://www.cnblogs.com/icyvalley/p/13196089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!