5 Dec
2024
5 Dec
'24
7:30 p.m.
From: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- include/dbs.idl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/dbs.idl b/include/dbs.idl index aea304d4e62..4c6781dddbb 100644 --- a/include/dbs.idl +++ b/include/dbs.idl @@ -828,6 +828,15 @@ typedef struct tagDBTIMESTAMP { ULONG fraction; } DBTIMESTAMP; +typedef signed char SBYTE; + +typedef struct tagDB_VARNUMERIC { + BYTE precision; + SBYTE scale; + BYTE sign; + BYTE val[]; +} DB_VARNUMERIC; + typedef DWORD DBREASON; typedef DWORD DBEVENTPHASE; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6972