This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _MEMORY_H_ | |
#define _MEMORY_H_ | |
void* Malloc( size_t size ); | |
void Free( void* buf ); | |
void* AlignMalloc( size_t size, size_t align ); | |
void AlignFree( void* buf ); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _CPP_HEADER_CODE_GENERATOR_H_ | |
#define _CPP_HEADER_CODE_GENERATOR_H_ | |
#include "CodeGenerator.h" | |
struct CppHeaderGenerator { | |
enum { | |
EAccess_Public = 0x01, | |
EAccess_Protected = 0x02, | |
EAccess_Private = 0x04 |
NewerOlder