Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / dis / declsec.h
1 /*
2  * declsec.h:  Support for the new declarative security attribute
3  *      metadata format (2.0)
4  *
5  * Author:
6  *      Sebastien Pouliot  <sebastien@ximian.com>
7  *
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.
10  */
11
12 #ifndef __MONODIS_DECLSEC_H__
13 #define __MONODIS_DECLSEC_H__
14
15 #define MONO_DECLSEC_FORMAT_20          0x2E
16
17 #define MONO_DECLSEC_FIELD              0x53
18 #define MONO_DECLSEC_PROPERTY           0x54
19 #define MONO_DECLSEC_ENUM               0x55
20
21 #define MONO_TYPE_SYSTEM_TYPE           0x50
22
23 char* dump_declsec_entry20 (MonoImage *m, const char* p, const char *indent);
24
25 #endif /* __MONODIS_DECLSEC_H__ */