blob: 984686c220ec33c82e451e6ffc54222a678614d7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#define SECURITY_WIN32
#include <windows.h>
#include <sspi.h>
#include <SecExt.h>
#include <stdarg.h>
#include <stdio.h>
#define SSPI_MAX_TOKEN_SIZE 50000
#define SEC_ERROR(err) (err < 0)
extern void sspi_errmsg(int err, char *buf, size_t size);
|