Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
cc2ac078
Commit
cc2ac078
authored
May 16, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
May 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add oledb types DBDATE, DBTIME and move DBTIMESTAMP to the correct idl.
parent
e08a1d5b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
9 deletions
+22
-9
dbs.idl
include/dbs.idl
+22
-0
oledb.idl
include/oledb.idl
+0
-9
No files found.
include/dbs.idl
View file @
cc2ac078
...
...
@@ -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
;
include/oledb.idl
View file @
cc2ac078
...
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment