mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
16 lines
220 B
C++
Executable File
16 lines
220 B
C++
Executable File
// Windows/MemoryLock.h
|
|
|
|
#ifndef __WINDOWS_MEMORYLOCK_H
|
|
#define __WINDOWS_MEMORYLOCK_H
|
|
|
|
namespace NWindows {
|
|
namespace NSecurity {
|
|
|
|
#ifndef UNDER_CE
|
|
bool EnableLockMemoryPrivilege(bool enable = true);
|
|
#endif
|
|
|
|
}}
|
|
|
|
#endif
|