-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLock.h
84 lines (71 loc) · 1.3 KB
/
Lock.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#pragma once
namespace Easy
{
class CLock
{
public:
/*!
* @brief Init
*
* Initialize process lock
* @param sName The name of lock.
* @return bool true is means success.
*/
static bool Init(CString sName);
/*!
* @brief On
*
* On process lock
* @return bool true is means success.
*/
static bool On();
/*!
* @brief Off
*
* Off process lock
* @return bool true is means success.
*/
static bool Off();
/*!
* @brief Release
*
* Release process lock
* @return bool true is means success.
*/
static bool Release();
/*!
* @brief GetLastError
*
* Get the last error code
* @return DWORD the error code
*/
static DWORD GetLastError();
/*!
* @brief GetLastErrorMsg
*
* Get the last error message
* @return CString the error message
*/
static CString GetLastErrorMsg();
private:
/*!
* @brief GetSystemError
*
* used to get system error and save it
*/
void GetSystemError();
/*!
* @brief FormatLastError
*
* format the last error code to string
* @param dwLastError the error code want to format
* @return CString the error message
*/
CString FormatLastError(DWORD dwLastError);
static CString m_sLastError;
static DWORD m_nLastError;
static HANDLE s_hMutex;
static int s_nCount;
static CString m_sName;
};
}