mssql: support windows (#10336)

This commit is contained in:
youyuanwu 2021-06-07 04:02:15 -07:00 committed by GitHub
parent 0615f2e236
commit 3582118b7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 61 additions and 8 deletions

20
thirdparty/mssql/include/mssql.h vendored Normal file
View file

@ -0,0 +1,20 @@
// Hacking some headers in windows.
// sql headers using UNICODE to change function signatures.
// Currently Linux bindings do not use unicode SQL C bindings,
// So we turn off the UNICODE to make it compile on windows.
// For future Unicode support, please raise a issue.
#include <windows.h>
#include <sal.h>
#ifdef UNICODE
// Turn off unicode macro and turn back on, so it only affects sql headers
#undef UNICODE
#include <sql.h>
#include <sqlext.h>
#define UNICODE
#else
#include <sql.h>
#include <sqlext.h>
#endif