Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
026ccc44
Commit
026ccc44
authored
Oct 26, 2020
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 26, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add missing DBPARAM* types and enums.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0ca0b5a5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
dbs.idl
include/dbs.idl
+25
-0
No files found.
include/dbs.idl
View file @
026ccc44
...
...
@@ -800,3 +800,28 @@ typedef struct tagDBCOLUMNINFO {
BYTE
bScale
;
DBID
columnid
;
}
DBCOLUMNINFO
;
typedef
DWORD
DBPARAMFLAGS
;
enum
DBPARAMFLAGSENUM
{
DBPARAMFLAGS_ISINPUT
=
0
x001
,
DBPARAMFLAGS_ISOUTPUT
=
0
x002
,
DBPARAMFLAGS_ISSIGNED
=
0
x010
,
DBPARAMFLAGS_ISNULLABLE
=
0
x040
,
DBPARAMFLAGS_ISLONG
=
0
x080
}
;
enum
DBPARAMFLAGSENUM20
{
DBPARAMFLAGS_SCALEISNEGATIVE
=
0
x100
}
;
typedef
struct
tagDBPARAMINFO
{
DBPARAMFLAGS
dwFlags
;
DBORDINAL
iOrdinal
;
LPOLESTR
pwszName
;
ITypeInfo
*
pTypeInfo
;
DBLENGTH
ulParamSize
;
DBTYPE
wType
;
BYTE
bPrecision
;
BYTE
bScale
;
}
DBPARAMINFO
;
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