- We need to invalidate the selection area when we replace the
[mono-project.git] / mono / metadata / blob.h
blobe4a973e56d18279f3a08daf7ba7cce6c6713c08c
1 /*
2 * blob.h: Definitions used to pull information out of the Blob
4 */
5 #ifndef _MONO_METADATA_BLOB_H_
6 #define _MONO_METADATA_BLOB_H_
8 /*
9 * Encoding for type signatures used in the Metadata
11 typedef enum {
12 MONO_TYPE_END = 0x00, /* End of List */
13 MONO_TYPE_VOID = 0x01,
14 MONO_TYPE_BOOLEAN = 0x02,
15 MONO_TYPE_CHAR = 0x03,
16 MONO_TYPE_I1 = 0x04,
17 MONO_TYPE_U1 = 0x05,
18 MONO_TYPE_I2 = 0x06,
19 MONO_TYPE_U2 = 0x07,
20 MONO_TYPE_I4 = 0x08,
21 MONO_TYPE_U4 = 0x09,
22 MONO_TYPE_I8 = 0x0a,
23 MONO_TYPE_U8 = 0x0b,
24 MONO_TYPE_R4 = 0x0c,
25 MONO_TYPE_R8 = 0x0d,
26 MONO_TYPE_STRING = 0x0e,
27 MONO_TYPE_PTR = 0x0f, /* arg: <type> token */
28 MONO_TYPE_BYREF = 0x10, /* arg: <type> token */
29 MONO_TYPE_VALUETYPE = 0x11, /* arg: <type> token */
30 MONO_TYPE_CLASS = 0x12, /* arg: <type> token */
31 MONO_TYPE_VAR = 0x13, /* number */
32 MONO_TYPE_ARRAY = 0x14, /* type, rank, boundsCount, bound1, loCount, lo1 */
33 MONO_TYPE_GENERICINST= 0x15, /* <type> <type-arg-count> <type-1> \x{2026} <type-n> */
34 MONO_TYPE_TYPEDBYREF = 0x16,
35 MONO_TYPE_I = 0x18,
36 MONO_TYPE_U = 0x19,
37 MONO_TYPE_FNPTR = 0x1b, /* arg: full method signature */
38 MONO_TYPE_OBJECT = 0x1c,
39 MONO_TYPE_SZARRAY = 0x1d, /* 0-based one-dim-array */
40 MONO_TYPE_MVAR = 0x1e, /* number */
41 MONO_TYPE_CMOD_REQD = 0x1f, /* arg: typedef or typeref token */
42 MONO_TYPE_CMOD_OPT = 0x20, /* optional arg: typedef or typref token */
43 MONO_TYPE_INTERNAL = 0x21, /* CLR internal type */
45 MONO_TYPE_MODIFIER = 0x40, /* Or with the following types */
46 MONO_TYPE_SENTINEL = 0x41, /* Sentinel for varargs method signature */
47 MONO_TYPE_PINNED = 0x45 /* Local var that points to pinned object */
48 } MonoTypeEnum;
50 typedef enum {
51 MONO_TABLE_MODULE,
52 MONO_TABLE_TYPEREF,
53 MONO_TABLE_TYPEDEF,
54 MONO_TABLE_FIELD_POINTER,
55 MONO_TABLE_FIELD,
56 MONO_TABLE_METHOD_POINTER,
57 MONO_TABLE_METHOD,
58 MONO_TABLE_PARAM_POINTER,
59 MONO_TABLE_PARAM,
60 MONO_TABLE_INTERFACEIMPL,
61 MONO_TABLE_MEMBERREF, /* 0xa */
62 MONO_TABLE_CONSTANT,
63 MONO_TABLE_CUSTOMATTRIBUTE,
64 MONO_TABLE_FIELDMARSHAL,
65 MONO_TABLE_DECLSECURITY,
66 MONO_TABLE_CLASSLAYOUT,
67 MONO_TABLE_FIELDLAYOUT, /* 0x10 */
68 MONO_TABLE_STANDALONESIG,
69 MONO_TABLE_EVENTMAP,
70 MONO_TABLE_EVENT_POINTER,
71 MONO_TABLE_EVENT,
72 MONO_TABLE_PROPERTYMAP,
73 MONO_TABLE_PROPERTY_POINTER,
74 MONO_TABLE_PROPERTY,
75 MONO_TABLE_METHODSEMANTICS,
76 MONO_TABLE_METHODIMPL,
77 MONO_TABLE_MODULEREF, /* 0x1a */
78 MONO_TABLE_TYPESPEC,
79 MONO_TABLE_IMPLMAP,
80 MONO_TABLE_FIELDRVA,
81 MONO_TABLE_UNUSED6,
82 MONO_TABLE_UNUSED7,
83 MONO_TABLE_ASSEMBLY, /* 0x20 */
84 MONO_TABLE_ASSEMBLYPROCESSOR,
85 MONO_TABLE_ASSEMBLYOS,
86 MONO_TABLE_ASSEMBLYREF,
87 MONO_TABLE_ASSEMBLYREFPROCESSOR,
88 MONO_TABLE_ASSEMBLYREFOS,
89 MONO_TABLE_FILE,
90 MONO_TABLE_EXPORTEDTYPE,
91 MONO_TABLE_MANIFESTRESOURCE,
92 MONO_TABLE_NESTEDCLASS,
93 MONO_TABLE_GENERICPARAM, /* 0x2a */
94 MONO_TABLE_METHODSPEC,
95 MONO_TABLE_GENERICPARAMCONSTRAINT
97 #define MONO_TABLE_LAST MONO_TABLE_GENERICPARAMCONSTRAINT
98 #define MONO_TABLE_NUM (MONO_TABLE_LAST + 1)
100 } MonoMetaTableEnum;
102 #endif