1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

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
4 changed files with 61 additions and 8 deletions

4
thirdparty/mssql/include/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*
!.gitignore
!mssql.h

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