15 lines
237 B
C
15 lines
237 B
C
#ifndef OBJREF
|
|
#define OBJREF
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct ObjRef{
|
|
unsigned int size;
|
|
unsigned char data[1];
|
|
bool brokenHeart;
|
|
struct ObjRef *forwardPointer;
|
|
} *ObjRef;
|
|
|
|
#endif /* ifndef OBJREF
|
|
#define OBJREF */
|