Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MemoryLock.h « Windows « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fe619de05fb8e9f58e9134cb5625168f0647168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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