2001-09-23 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mono / metadata / metaparse.h
1 #ifndef _MONO_METADATA_METAPARSE_H_
2 #define _MONO_METADATA_METAPARSE_H__
3
4 typedef struct {
5         guint32  cols [6];
6         struct {
7                 guint32 first, last;
8         } field;
9         struct {
10                 guint32 first, last;
11         } method;
12 } MonoTypedef;
13
14 void mono_typedef_get (MonoImage *image, guint32 tidx, MonoTypedef *ret);
15
16 #endif