1 /*---------------------------------------------------------------------------* 2 Project: MEM library 3 File: mem.h 4 Programmers: Makoto Takano 5 6 Copyright 2005 Nintendo. All rights reserved. 7 8 These coded instructions, statements, and computer programs contain 9 proprietary information of Nintendo of America Inc. and/or Nintendo 10 Company Ltd., and are protected by Federal copyright law. They may 11 not be disclosed to third parties or copied or duplicated in any form, 12 in whole or in part, without the prior written consent of Nintendo. 13 *---------------------------------------------------------------------------*/ 14 15 #ifndef __MEM_H__ 16 #define __MEM_H__ 17 18 #ifdef __cplusplus 19 extern "C" { 20 #endif 21 22 23 #include <revolution/mem/heapCommon.h> 24 #include <revolution/mem/expHeap.h> 25 #include <revolution/mem/frameHeap.h> 26 #include <revolution/mem/unitHeap.h> 27 #include <revolution/mem/allocator.h> 28 #include <revolution/mem/list.h> 29 30 31 #ifdef __cplusplus 32 } /* extern "C"*/ 33 #endif 34 35 /* __MEM_H__*/ 36 #endif 37