From: Piotr Caban <piotr(a)codeweavers.com> --- include/dbs.idl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/dbs.idl b/include/dbs.idl index 0f132fbc629..2d266b98b7a 100644 --- a/include/dbs.idl +++ b/include/dbs.idl @@ -999,6 +999,18 @@ typedef enum tagDBBOOKMARK { cpp_quote("#define STD_BOOKMARKLENGTH 1") +typedef DWORD DBINDEX_COL_ORDER; + +enum DBINDEX_COL_ORDERENUM { + DBINDEX_COL_ORDER_ASC, + DBINDEX_COL_ORDER_DESC +}; + +typedef struct tagDBINDEXCOLUMNDESC { + DBID *pColumnID; + DBINDEX_COL_ORDER eIndexColOrder; +} DBINDEXCOLUMNDESC; + typedef struct tagDBCOLUMNDESC { LPOLESTR pwszTypeName; ITypeInfo *pTypeInfo; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9667