Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / blob.h
1 /*
2  * blob.h: Definitions used to pull information out of the Blob
3  *
4  */
5 #ifndef _MONO_METADATA_BLOB_H_
6 #define _MONO_METADATA_BLOB_H_
7
8 #define SIGNATURE_HAS_THIS      0x20
9 #define SIGNATURE_EXPLICIT_THIS 0x40
10 #define SIGNATURE_VARARG        0x05
11
12 /*
13  * Encoding for type signatures used in the Metadata
14  */
15 typedef enum {
16         MONO_TYPE_END        = 0x00,       /* End of List */
17         MONO_TYPE_VOID       = 0x01,
18         MONO_TYPE_BOOLEAN    = 0x02,
19         MONO_TYPE_CHAR       = 0x03,
20         MONO_TYPE_I1         = 0x04,
21         MONO_TYPE_U1         = 0x05,
22         MONO_TYPE_I2         = 0x06,
23         MONO_TYPE_U2         = 0x07,
24         MONO_TYPE_I4         = 0x08,
25         MONO_TYPE_U4         = 0x09,
26         MONO_TYPE_I8         = 0x0a,
27         MONO_TYPE_U8         = 0x0b,
28         MONO_TYPE_R4         = 0x0c,
29         MONO_TYPE_R8         = 0x0d,
30         MONO_TYPE_STRING     = 0x0e,
31         MONO_TYPE_PTR        = 0x0f,       /* arg: <type> token */
32         MONO_TYPE_BYREF      = 0x10,       /* arg: <type> token */
33         MONO_TYPE_VALUETYPE  = 0x11,       /* arg: <type> token */
34         MONO_TYPE_CLASS      = 0x12,       /* arg: <type> token */
35         MONO_TYPE_ARRAY      = 0x14,       /* type, rank, boundsCount, bound1, loCount, lo1 */
36         MONO_TYPE_TYPEDBYREF = 0x15,
37         MONO_TYPE_I          = 0x18,
38         MONO_TYPE_U          = 0x19,
39         MONO_TYPE_FNPTR      = 0x1b,          /* arg: full method signature */
40         MONO_TYPE_OBJECT     = 0x1c,
41         MONO_TYPE_SZARRAY    = 0x1d,       /* 0-based one-dim-array */
42         MONO_TYPE_CMOD_REQD  = 0x1f,       /* arg: typedef or typeref token */
43         MONO_TYPE_CMOD_OPT   = 0x20,       /* optional arg: typedef or typref token */
44         MONO_TYPE_INTERNAL   = 0x21,       /* CLR internal type */
45
46         MONO_TYPE_MODIFIER   = 0x40,       /* Or with the following types */
47         MONO_TYPE_SENTINEL   = 0x41,       /* Sentinel for varargs method signature */
48         MONO_TYPE_PINNED     = 0x45,       /* Local var that points to pinned object */
49 } MonoTypeEnum;
50
51 #endif