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:
4
thirdparty/mssql/include/.gitignore
vendored
Normal file
4
thirdparty/mssql/include/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*
|
||||
|
||||
!.gitignore
|
||||
!mssql.h
|
20
thirdparty/mssql/include/mssql.h
vendored
Normal file
20
thirdparty/mssql/include/mssql.h
vendored
Normal 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
|
Reference in New Issue
Block a user