comparison fuhtark_test/include/winapi/security.h @ 1500:91c8c3b7cbf0

add: futhark tests for generating vulkan api
author sam <sam@basx.dev>
date Wed, 26 Nov 2025 21:36:48 +0700
parents
children
comparison
equal deleted inserted replaced
1499:1f58458b7ef7 1500:91c8c3b7cbf0
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
6 #ifndef NTLMSP_NAME_A
7 #define NTLMSP_NAME_A "NTLM"
8 #define NTLMSP_NAME L"NTLM"
9 #endif
10
11 #ifndef MICROSOFT_KERBEROS_NAME_A
12 #define MICROSOFT_KERBEROS_NAME_A "Kerberos"
13 #define MICROSOFT_KERBEROS_NAME_W L"Kerberos"
14 #ifdef WIN32_CHICAGO
15 #define MICROSOFT_KERBEROS_NAME MICROSOFT_KERBEROS_NAME_A
16 #else
17 #define MICROSOFT_KERBEROS_NAME MICROSOFT_KERBEROS_NAME_W
18 #endif
19 #endif
20
21 #ifndef NEGOSSP_NAME
22 #define NEGOSSP_NAME_W L"Negotiate"
23 #define NEGOSSP_NAME_A "Negotiate"
24
25 #ifdef UNICODE
26 #define NEGOSSP_NAME NEGOSSP_NAME_W
27 #else
28 #define NEGOSSP_NAME NEGOSSP_NAME_A
29 #endif
30 #endif
31
32 #include <sspi.h>
33
34 #if defined(SECURITY_WIN32) || defined(SECURITY_KERNEL)
35 #include <secext.h>
36 #endif
37
38 #if ISSP_LEVEL==16
39 #include <issper16.h>
40 #endif