FreeRDP
Loading...
Searching...
No Matches
sspi_winpr.h
1
20#ifndef WINPR_SSPI_WINPR_H
21#define WINPR_SSPI_WINPR_H
22
23#include <winpr/sspi.h>
24
25SecurityFunctionTableW* SEC_ENTRY winpr_InitSecurityInterfaceW(void);
26SecurityFunctionTableA* SEC_ENTRY winpr_InitSecurityInterfaceA(void);
27
28void sspi_ContextBufferFree(void* contextBuffer);
29
30WINPR_ATTR_MALLOC(sspi_ContextBufferFree, 1)
31void* sspi_ContextBufferAlloc(UINT32 allocatorIndex, size_t size);
32
33WINPR_ATTR_MALLOC(sspi_FreeSecNtlmSettings, 1)
34SEC_WINPR_NTLM_SETTINGS_V2* sspi_CloneSecNtlmSettings(const SEC_WINPR_NTLM_SETTINGS_V2* other);
35
36#endif /* WINPR_SSPI_WINPR_H */