aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ml_win32/mlock.cpp
blob: 7384beb0783ea6ce39eb381457f63b0f14b63d98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*************************************************
* Memory Locking Functions Source File           *
* (C) 1999-2006 The Botan Project                *
*************************************************/

#include <botan/util.h>
#include <windows.h>

namespace Botan {

/*************************************************
* Lock an area of memory into RAM                *
*************************************************/
void lock_mem(void* ptr, u32bit bytes)
   {
   VirtualLock(ptr, bytes);
   }

/*************************************************
* Unlock a previously locked region of memory    *
*************************************************/
void unlock_mem(void* ptr, u32bit bytes)
   {
   VirtualUnlock(ptr, bytes);
   }

}