Commit cc2ac078 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

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

parent e08a1d5b
......@@ -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;
......@@ -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"
......
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