diff options
Diffstat (limited to 'libcnary/include/object.h')
-rw-r--r-- | libcnary/include/object.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libcnary/include/object.h b/libcnary/include/object.h new file mode 100644 index 0000000..adf1891 --- /dev/null +++ b/libcnary/include/object.h @@ -0,0 +1,25 @@ +/* + * object.h + * + * Created on: Mar 8, 2011 + * Author: posixninja + */ + +#ifndef OBJECT_H_ +#define OBJECT_H_ + +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +typedef struct object_t { + void* value; + unsigned int type; + unsigned int size; +} object_t; + +#endif /* OBJECT_H_ */ |