From c7412d4813ccb994fdd219f421eaba8bb37831dd Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 13 Jun 2011 18:30:37 +0200 Subject: Bundle libcnary for better packaging --- libcnary/include/object.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libcnary/include/object.h (limited to 'libcnary/include/object.h') 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_ */ -- cgit v1.1-32-gdbae