Merge pull request #5013 from bmiklautz/sspi_symbols

fix [winpr/sspi]: export symbols on all systems
This commit is contained in:
akallabeth 2018-11-14 13:29:03 +01:00 committed by GitHub
commit 50395ff575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,12 +25,15 @@
#define SEC_ENTRY __stdcall #define SEC_ENTRY __stdcall
#define SSPI_EXPORT __declspec(dllexport) #define SSPI_EXPORT __declspec(dllexport)
#else #else
#include <winpr/winpr.h>
#define SEC_ENTRY #define SEC_ENTRY
#define SSPI_EXPORT #define SSPI_EXPORT WINPR_API
#endif #endif
#ifdef _WIN32
typedef long LONG; typedef long LONG;
typedef unsigned long ULONG; typedef unsigned long ULONG;
#endif
typedef LONG SECURITY_STATUS; typedef LONG SECURITY_STATUS;
/** /**