reshuffling of dlls
[reactos.git] / reactos / dll / win32 / secur32 / sspi.c
1 #include <precomp.h>
2
3 #define NDEBUG
4 #include <debug.h>
5
6
7 SECURITY_STATUS
8 WINAPI
9 EnumerateSecurityPackagesW (
10 PULONG pulong,
11 PSecPkgInfoW* psecpkginfow
12 )
13 {
14 DPRINT1("%s() not implemented!\n", __FUNCTION__);
15 return ERROR_CALL_NOT_IMPLEMENTED;
16 }
17
18 SECURITY_STATUS
19 WINAPI
20 EnumerateSecurityPackagesA(
21 PULONG pulong,
22 PSecPkgInfoA* psecpkginfoa
23 )
24 {
25 DPRINT1("%s() not implemented!\n", __FUNCTION__);
26 return ERROR_CALL_NOT_IMPLEMENTED;
27 }
28
29 SECURITY_STATUS
30 WINAPI
31 FreeContextBuffer (
32 PVOID pvoid
33 )
34 {
35 DPRINT1("%s() not implemented!\n", __FUNCTION__);
36 return ERROR_CALL_NOT_IMPLEMENTED;
37 }
38
39 SECURITY_STATUS
40 WINAPI
41 AcquireCredentialsHandleA (
42 SEC_CHAR* pszPrincipal,
43 SEC_CHAR* pszPackage,
44 ULONG fUsage,
45 PLUID pID,
46 PVOID pAuth,
47 SEC_GET_KEY_FN pGetKeyFn,
48 PVOID pvGetKeyArgument,
49 PCredHandle phCred,
50 PTimeStamp pExpires
51 )
52 {
53 DPRINT1("%s() not implemented!\n", __FUNCTION__);
54 return ERROR_CALL_NOT_IMPLEMENTED;
55 }
56
57 SECURITY_STATUS
58 WINAPI
59 InitializeSecurityContextA (
60 PCredHandle phCred,
61 PCtxtHandle phContext,
62 SEC_CHAR* pszTarget,
63 ULONG fContextReq,
64 ULONG Reserved,
65 ULONG TargetData,
66 PSecBufferDesc pInput,
67 ULONG Reserved2,
68 PCtxtHandle phNewContext,
69 PSecBufferDesc pOut,
70 PULONG pfContextAttributes,
71 PTimeStamp pExpires
72 )
73 {
74 DPRINT1("%s() not implemented!\n", __FUNCTION__);
75 return ERROR_CALL_NOT_IMPLEMENTED;
76 }