4 Nov
2025
4 Nov
'25
1:12 p.m.
From: Piotr Caban <piotr(a)codeweavers.com> --- include/dbs.idl | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/include/dbs.idl b/include/dbs.idl index 2833550b1e1..86729abc4b1 100644 --- a/include/dbs.idl +++ b/include/dbs.idl @@ -991,3 +991,16 @@ typedef enum tagDBBOOKMARK { } DBBOOKMARK; cpp_quote("#define STD_BOOKMARKLENGTH 1") + +typedef struct tagDBCOLUMNDESC { + LPOLESTR pwszTypeName; + ITypeInfo *pTypeInfo; + [size_is(cPropertySets)] DBPROPSET *rgPropertySets; + CLSID *pclsid; + ULONG cPropertySets; + DBLENGTH ulColumnSize; + DBID dbcid; + DBTYPE wType; + BYTE bPrecision; + BYTE bScale; +} DBCOLUMNDESC; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9358