[profiler] Simplify the encoding of monitor events.
[mono-project.git] / mono / dis / declsec.h
bloba0e621f7cb0b47e6adfb71e310cd19b1fecd8295
1 /*
2 * declsec.h: Support for the new declarative security attribute
3 * metadata format (2.0)
5 * Author:
6 * Sebastien Pouliot <sebastien@ximian.com>
8 * Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
12 #ifndef __MONODIS_DECLSEC_H__
13 #define __MONODIS_DECLSEC_H__
15 #define MONO_DECLSEC_FORMAT_20 0x2E
17 #define MONO_DECLSEC_FIELD 0x53
18 #define MONO_DECLSEC_PROPERTY 0x54
19 #define MONO_DECLSEC_ENUM 0x55
21 #define MONO_TYPE_SYSTEM_TYPE 0x50
23 char* dump_declsec_entry20 (MonoImage *m, const char* p, const char *indent);
25 #endif /* __MONODIS_DECLSEC_H__ */