summaryrefslogtreecommitdiffstats
path: root/libcnary/include/object.h
blob: adf1891d723d845fcfcdbb87bf62475eec9fea99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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_ */