34 lines
277 B
C
34 lines
277 B
C
|
|
#ifndef _header
|
||
|
|
|
||
|
|
#define _header
|
||
|
|
|
||
|
|
|
||
|
|
// Macros
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#include "stdlib.h"
|
||
|
|
|
||
|
|
extern char * __ClassNames[];
|
||
|
|
|
||
|
|
|
||
|
|
// Includes
|
||
|
|
|
||
|
|
|
||
|
|
typedef struct header{
|
||
|
|
|
||
|
|
unsigned short __classIndex;
|
||
|
|
|
||
|
|
char * name;
|
||
|
|
|
||
|
|
char * value;
|
||
|
|
|
||
|
|
|
||
|
|
} header;
|
||
|
|
|
||
|
|
header header_new( );
|
||
|
|
|
||
|
|
header * header_newPointer( );
|
||
|
|
|
||
|
|
#endif
|