panthema / 2009 / cryptote / cryptote-0.5.390 / libenctain / botan-1.6 / modules / ml_win32 / mlock_win32.cpp (Download File)
/*************************************************
* Memory Locking Functions Source File           *
* (C) 1999-2007 The Botan Project                *
*************************************************/

#include "botan-1.6/include/util.h"
#include <windows.h>

namespace Enctain {
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);
   }

}
}