2001-07-20 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mono / metadata / object.c
1 /*
2  * object.c: Object creation for the Mono runtime
3  *
4  * Author:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *
7  * (C) 2001 Ximian, Inc.
8  */
9 #include <config.h>
10 #include <mono/cli/object.h>
11
12 /**
13  * mono_object_new:
14  * @image: Context where the type_token is hosted
15  * @type_token: a token of the type that we want to create
16  *
17  * Returns: A newly created object whose definition is
18  * looked up using @type_token in the @image image
19  */
20 void *
21 mono_object_new (MonoImage *image, guint32 type_token)
22 {
23 }