码迷,mamicode.com
首页 > 其他好文 > 详细

Qt保证只有一个实例(将CreateMutex得到的handle通过转换得到值)

时间:2015-12-17 20:47:56      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

使用CreateMutex 可以实现只启动一个应用程序实例


view plaincopy to clipboardprint?
#include <QApplication>
#include <QtNetwork>
#include "mydlg.h"

#ifdef Q_WS_WIN
#include <windows.h>
#endif

int main(int argc, char * argv[]) {
QApplication app(argc,argv);
#ifdef Q_WS_WIN
HANDLE hMutex = CreateMutex(NULL, true, QString("[‘{EFEB2EF6-F8E0-AE44-BABE-1BBEF2C7FD56}‘]").toStdWString().c_str());
if (GetLastError() == ERROR_ALREADY_EXISTS)
{
CloseHandle(hMutex);
QMessageBox::information(NULL, "Info", "Has been Run", "OK");
app.exit(1);
return 1;
}
#endif
myDlg *win = new myDlg;
win->showLoginForm();
return app.exec();
}
#include <QApplication>
#include <QtNetwork>
#include "mydlg.h"

#ifdef Q_WS_WIN
#include <windows.h>
#endif

int main(int argc, char * argv[]) {
QApplication app(argc,argv);
#ifdef Q_WS_WIN
HANDLE hMutex = CreateMutex(NULL, true, QString("[‘{EFEB2EF6-F8E0-AE44-BABE-1BBEF2C7FD56}‘]").toStdWString().c_str());
if (GetLastError() == ERROR_ALREADY_EXISTS)
{
CloseHandle(hMutex);
QMessageBox::information(NULL, "Info", "Has been Run", "OK");
app.exit(1);
return 1;
}
#endif
myDlg *win = new myDlg;
win->showLoginForm();
return app.exec();
}

砖头不离身推荐阅读:

Vega Prime的简介

http://blog.sina.com.cn/s/blog_668aae7801017gib.html

Qt保证只有一个实例(将CreateMutex得到的handle通过转换得到值)

标签:

原文地址:http://www.cnblogs.com/findumars/p/5055125.html

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