diff options
Diffstat (limited to 'CPP/Windows/SecurityUtils.h')
-rw-r--r-- | CPP/Windows/SecurityUtils.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CPP/Windows/SecurityUtils.h b/CPP/Windows/SecurityUtils.h index c0d7b12..4ef3939 100644 --- a/CPP/Windows/SecurityUtils.h +++ b/CPP/Windows/SecurityUtils.h | |||
@@ -1,7 +1,7 @@ | |||
1 | // Windows/SecurityUtils.h | 1 | // Windows/SecurityUtils.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_SECURITY_UTILS_H | 3 | #ifndef ZIP7_INC_WINDOWS_SECURITY_UTILS_H |
4 | #define __WINDOWS_SECURITY_UTILS_H | 4 | #define ZIP7_INC_WINDOWS_SECURITY_UTILS_H |
5 | 5 | ||
6 | #include <NTSecAPI.h> | 6 | #include <NTSecAPI.h> |
7 | 7 | ||
@@ -20,7 +20,7 @@ typedef NTSTATUS (NTAPI *Func_LsaAddAccountRights)(LSA_HANDLE PolicyHandle, | |||
20 | 20 | ||
21 | #define POLICY_FUNC_CALL(fff, str) \ | 21 | #define POLICY_FUNC_CALL(fff, str) \ |
22 | if (hModule == NULL) return MY_STATUS_NOT_IMPLEMENTED; \ | 22 | if (hModule == NULL) return MY_STATUS_NOT_IMPLEMENTED; \ |
23 | Func_ ## fff v = (Func_ ## fff) (void(*)()) GetProcAddress(hModule, str); \ | 23 | const Func_ ## fff v = Z7_GET_PROC_ADDRESS(Func_ ## fff, hModule, str); \ |
24 | if (!v) return MY_STATUS_NOT_IMPLEMENTED; \ | 24 | if (!v) return MY_STATUS_NOT_IMPLEMENTED; \ |
25 | const NTSTATUS res = v | 25 | const NTSTATUS res = v |
26 | 26 | ||
@@ -39,7 +39,7 @@ class CAccessToken | |||
39 | { | 39 | { |
40 | HANDLE _handle; | 40 | HANDLE _handle; |
41 | public: | 41 | public: |
42 | CAccessToken(): _handle(NULL) {}; | 42 | CAccessToken(): _handle(NULL) {} |
43 | ~CAccessToken() { Close(); } | 43 | ~CAccessToken() { Close(); } |
44 | bool Close() | 44 | bool Close() |
45 | { | 45 | { |
@@ -93,9 +93,9 @@ public: | |||
93 | CPolicy(): _handle(NULL) | 93 | CPolicy(): _handle(NULL) |
94 | { | 94 | { |
95 | #ifndef _UNICODE | 95 | #ifndef _UNICODE |
96 | hModule = GetModuleHandle(TEXT("Advapi32.dll")); | 96 | hModule = GetModuleHandle(TEXT("advapi32.dll")); |
97 | #endif | 97 | #endif |
98 | }; | 98 | } |
99 | ~CPolicy() { Close(); } | 99 | ~CPolicy() { Close(); } |
100 | 100 | ||
101 | NTSTATUS Open(PLSA_UNICODE_STRING systemName, PLSA_OBJECT_ATTRIBUTES objectAttributes, | 101 | NTSTATUS Open(PLSA_UNICODE_STRING systemName, PLSA_OBJECT_ATTRIBUTES objectAttributes, |