mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
235 B
C++
16 lines
235 B
C++
// 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
|