mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
mssql: support windows (#10336)
This commit is contained in:
parent
0615f2e236
commit
3582118b7c
4 changed files with 61 additions and 8 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue