Just one extra bit
[mono.git] / mono / metadata / object.h
1 #ifndef _MONO_CLI_OBJECT_H_
2 #define _MONO_CLI_OBJECT_H_
3
4 typedef struct {
5 } MonoClass;
6
7 typedef struct {
8         MonoClass *klass;
9 } MonoObject;
10
11 void *mono_object_new (MonoImage *image, guint32 type_token);
12                       
13 #endif