OSDN Git Service

(none)
[hos/hos-v4a.git] / aplfw / library / container / fixmemheap / fixmemheap.h
1 /** 
2  *  Hyper Operating System  Application Framework
3  *
4  * @file  fixmemheap.h
5  * @brief %jp{固定サイズメモリヒープクラス}%en{fixed size memory heap class}
6  *
7  * Copyright (C) 2006-2008 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12
13 #ifndef __HOS__fixmemheap_h__
14 #define __HOS__fixmemheap_h__
15
16
17 #include "library/container/memheap/memheap_local.h"
18
19
20 typedef struct c_fixmemheap     C_FIXMEMHEAP;
21
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 C_FIXMEMHEAP *FixMemHeap_Create(void *pMemBase, MEMSIZE BlkSize,  MEMSIZE BlkNum);
28 void         FixMemHeap_Delete(C_FIXMEMHEAP *self);
29
30
31 #ifdef __cplusplus
32 }
33 #endif
34
35
36
37 #endif  /* __HOS__memheap_h__ */
38
39
40 /* end of file */