CreateMutex实现只能打开一个客户端

#include "stdafx.h"
#include <Windows.h>
#include <iostream>

using namespace std;

int _tmain (int argc, LPTSTR argv[])
{
    HANDLE h=CreateMutex(NULL,TRUE,"AAAAAAA");
    if(GetLastError()==ERROR_ALREADY_EXISTS){
        CloseHandle(h);
        return 0;  
    }   
    system("pause");
    CloseHandle(h);
    return 0;
}
原文地址:https://www.cnblogs.com/duyy/p/3761049.html