Release 991031.
[wine] / include / ntsecapi.h
1 #ifndef __WINE_NTSECAPI_H
2 #define __WINE_NTSECAPI_H
3
4 #include "ntdef.h"
5 #include "winnt.h"
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif /* defined(__cplusplus) */
10
11 typedef UNICODE_STRING LSA_UNICODE_STRING, *PLSA_UNICODE_STRING;
12 typedef STRING LSA_STRING, *PLSA_STRING;
13 typedef OBJECT_ATTRIBUTES LSA_OBJECT_ATTRIBUTES, *PLSA_OBJECT_ATTRIBUTES;
14
15 typedef PVOID LSA_HANDLE, *PLSA_HANDLE;
16
17 NTSTATUS WINAPI LsaOpenPolicy(PLSA_UNICODE_STRING,PLSA_OBJECT_ATTRIBUTES,ACCESS_MASK,PLSA_HANDLE);
18
19 #ifdef __cplusplus
20 } /* extern "C" */
21 #endif /* defined(__cplusplus) */
22
23 #endif /* !defined(__WINE_NTSECAPI_H) */