mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-30 00:15:47 -04:00
30 lines
733 B
C++
30 lines
733 B
C++
// ======================================================================
|
|
//
|
|
// OsMemory.h
|
|
//
|
|
// Copyright 2002 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_OsMemory_H
|
|
#define INCLUDED_OsMemory_H
|
|
|
|
// ======================================================================
|
|
|
|
class OsMemory
|
|
{
|
|
public:
|
|
static void install();
|
|
static void remove();
|
|
|
|
static void * reserve(size_t bytes);
|
|
static void * commit(void *addr, size_t bytes);
|
|
static bool free(void *addr, size_t bytes);
|
|
static bool protect(void *addr, size_t bytes, bool allowAccess);
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif // INCLUDED_OsMemory_H
|
|
|