[bcl] Enable tests for the monodroid profile.
[mono.git] / mono / metadata / mono-security-windows-internals.h
1 /*
2  * Copyright 2016 Microsoft
3  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
4  */
5 #ifndef __MONO_METADATA_MONO_SECURITY_WINDOWS_INTERNALS_H__
6 #define __MONO_METADATA_MONO_SECURITY_WINDOWS_INTERNALS_H__
7
8 #include <config.h>
9 #include <glib.h>
10
11 #ifdef HOST_WIN32
12 #include "mono/metadata/security.h"
13 #include "mono/metadata/object.h"
14 #include "mono/metadata/object-internals.h"
15 #include "mono/metadata/metadata.h"
16 #include "mono/metadata/metadata-internals.h"
17
18 gint32
19 mono_security_win_get_token_name (gpointer token, gunichar2 ** uniname);
20
21 gboolean
22 mono_security_win_is_machine_protected (gunichar2 *path);
23
24 gboolean
25 mono_security_win_is_user_protected (gunichar2 *path);
26
27 gboolean
28 mono_security_win_protect_machine (gunichar2 *path);
29
30 gboolean
31 mono_security_win_protect_user (gunichar2 *path);
32 #endif /* HOST_WIN32 */
33
34 #endif /* __MONO_METADATA_MONO_SECURITY_WINDOWS_INTERNALS_H__ */