include: Add oledb types DBDATE, DBTIME and move DBTIMESTAMP to the correct idl.

This commit is contained in:
Alistair Leslie-Hughes 2013-05-16 14:58:10 +10:00 committed by Alexandre Julliard
parent e08a1d5bc1
commit cc2ac07829
2 changed files with 22 additions and 9 deletions

View file

@ -515,3 +515,25 @@ typedef struct tagRMTPACK
ULONG cArray;
[size_is(cArray)] VARIANT *rgArray;
} RMTPACK;
typedef struct tagDBDATE {
SHORT year;
USHORT month;
USHORT day;
} DBDATE;
typedef struct tagDBTIME {
USHORT hour;
USHORT minute;
USHORT second;
} DBTIME;
typedef struct tagDBTIMESTAMP {
SHORT year;
USHORT month;
USHORT day;
USHORT hour;
USHORT minute;
USHORT second;
ULONG fraction;
} DBTIMESTAMP;

View file

@ -42,15 +42,6 @@ typedef ULONG_PTR DBREFCOUNT;
typedef ULONG_PTR DB_UPARAMS;
typedef LONG_PTR DB_LPARAMS;
typedef DWORD_PTR DBHASHVALUE;
typedef struct {
SHORT year;
USHORT month;
USHORT day;
USHORT hour;
USHORT minute;
USHORT second;
ULONG fraction;
} DBTIMESTAMP;
#include "dbs.idl"