From: Piotr Caban piotr@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;