Added typedefs SQLWCHAR and SQLTCHAR.
This commit is contained in:
parent
43bd5512c3
commit
4e414963ed
|
@ -28,6 +28,16 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef unsigned char SQLCHAR;
|
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)
|
#if (ODBCVER >= 0x0300)
|
||||||
typedef unsigned char SQLDATE;
|
typedef unsigned char SQLDATE;
|
||||||
|
|
Loading…
Reference in New Issue