Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 20 | pmbaty | 1 | #ifndef _BRSTDMEM_H_ |
| 2 | #define _BRSTDMEM_H_ |
||
| 3 | |||
| 4 | #include "brender/br_types.h" |
||
| 5 | |||
| 6 | extern br_allocator BrStdlibAllocator; |
||
| 7 | extern br_allocator* _BrDefaultAllocator; |
||
| 8 | |||
| 9 | void* BrStdlibAllocate(br_size_t size, br_uint_8 type); |
||
| 10 | |||
| 11 | void BrStdlibFree(void* mem); |
||
| 12 | |||
| 13 | br_size_t BrStdlibInquire(br_uint_8 type); |
||
| 14 | |||
| 15 | br_uint_32 BrStdlibAlign(br_uint_8 type); |
||
| 16 | |||
| 17 | #endif |