Move MS DDK files to DDK
[reactos.git] / reactos / w32api / include / sddl.h
1 #ifndef _SDDL_H
2 #define _SDDL_H
3 #if __GNUC__ >=3
4 #pragma GCC system_header
5 #endif
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 BOOL WINAPI ConvertSidToStringSidA(PSID Sid, LPSTR *StringSid);
12 BOOL WINAPI ConvertSidToStringSidW(PSID Sid, LPWSTR *StringSid);
13
14 #ifdef UNICODE
15 #define ConvertSidToStringSid ConvertSidToStringSidW
16 #else /* UNICODE */
17 #define ConvertSidToStringSid ConvertSidToStringSidA
18 #endif /* UNICODE */
19
20 #ifdef __cplusplus
21 }
22 #endif
23 #endif /* ! defined _SDDL_H */