mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
Added typedefs SQLWCHAR and SQLTCHAR.
This commit is contained in:
parent
43bd5512c3
commit
4e414963ed
@ -28,6 +28,16 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
typedef unsigned char SQLCHAR;
|
||||
#ifdef WINE_UNICODE_NATIVE
|
||||
typedef wchar_t SQLWCHAR;
|
||||
#else
|
||||
typedef unsigned short SQLWCHAR;
|
||||
#endif
|
||||
#ifndef UNICODE
|
||||
typedef SQLCHAR SQLTCHAR;
|
||||
#else
|
||||
typedef SQLWCHAR SQLTCHAR;
|
||||
#endif
|
||||
|
||||
#if (ODBCVER >= 0x0300)
|
||||
typedef unsigned char SQLDATE;
|
||||
|
Loading…
Reference in New Issue
Block a user