📄 limitsingleinstance.h
字号:
//---------------------------------------------------------------------------
//
// LimitSingleInstance.h
//
// SUBSYSTEM: Hook system
//
// MODULE: Hook server
//
// DESCRIPTION: Controls number of the process instances
// This code is from Q243953 in case you lose the article
// and wonder where this code came from...
//
//
// AUTHOR: Ivo Ivanov (ivopi@hotmail.com)
// DATE: 2001 December v1.00
//
//---------------------------------------------------------------------------
#if !defined(_LIMITSINGLEINSTANCE_H_)
#define _LIMITSINGLEINSTANCE_H_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//---------------------------------------------------------------------------
//
// class CLimitSingleInstance
//
// this code is from Q243953 in case you lose the article and wonder
// where this code came from...
//---------------------------------------------------------------------------
class CLimitSingleInstance
{
protected:
DWORD m_dwLastError;
HANDLE m_hMutex;
public:
CLimitSingleInstance(char* pszMutexName);
~CLimitSingleInstance();
BOOL IsAnotherInstanceRunning();
};
#endif // !defined(_LIMITSINGLEINSTANCE_H_)
//----------------------------End of the file -------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -