include: Add oledb types DBDATE, DBTIME and move DBTIMESTAMP to the correct idl.
This commit is contained in:
parent
e08a1d5bc1
commit
cc2ac07829
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue