1// Windows/MemoryLock.h 2 3#ifndef __WINDOWS_MEMORYLOCK_H 4#define __WINDOWS_MEMORYLOCK_H 5 6namespace NWindows { 7namespace NSecurity { 8 9#ifndef UNDER_CE 10bool EnableLockMemoryPrivilege(bool enable = true); 11#endif 12 13}} 14 15#endif 16