mirror of
https://github.com/holub/mame
synced 2025-05-07 06:44:51 +03:00
16 lines
220 B
C++
16 lines
220 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
|