Commit 4e414963 authored by Phil Krylov's avatar Phil Krylov Committed by Alexandre Julliard

Added typedefs SQLWCHAR and SQLTCHAR.

parent 43bd5512
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment