14 lines
354 B
C++
14 lines
354 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: SwapLock.hpp
|
||
|
Date: 2022-3-21
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::Memory::SwapLock
|
||
|
{
|
||
|
AUKN_SYM bool Lock(const AuList<AuPair<AuUInt, AuUInt>> &addressRange);
|
||
|
AUKN_SYM bool Unlock(const AuList<AuPair<AuUInt, AuUInt>> &addressRange);
|
||
|
}
|