mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
39 lines
No EOL
823 B
C++
39 lines
No EOL
823 B
C++
/**
|
|
* @file MemoryPool.h
|
|
* @brief Defines classes for memory pools for storage.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace agl
|
|
{
|
|
typedef s32 MemoryAttribute;
|
|
|
|
namespace detail
|
|
{
|
|
class MemoryPoolType
|
|
{
|
|
public:
|
|
static s32 convert(agl::MemoryAttribute);
|
|
|
|
static u32 cInvalidPoolType; // 0
|
|
static u32 cValidPoolType; // 0x80000000
|
|
};
|
|
|
|
class MemoryPool
|
|
{
|
|
public:
|
|
MemoryPool();
|
|
|
|
void initialize(void *, u64, agl::detail::MemoryPoolType const &);
|
|
void initialize(void *, u64, agl::detail::MemoryPoolType const &, agl::detail::MemoryPool const &, s32);
|
|
|
|
void finalize();
|
|
|
|
u8 _0[0x104]; // todo: where do the parent 0x100 bytes come from?
|
|
|
|
};
|
|
};
|
|
}; |