Module: wine Branch: master Commit: 16f99ce6623d404b20b55f8b73ae40a1fae81d85 URL: http://source.winehq.org/git/wine.git/?a=commit;h=16f99ce6623d404b20b55f8b73...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Mon Sep 16 11:38:16 2013 +1000
dbs.idl: Add type DB_NUMERIC.
---
include/dbs.idl | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/include/dbs.idl b/include/dbs.idl index ceb9773..1e0ac6c 100644 --- a/include/dbs.idl +++ b/include/dbs.idl @@ -50,6 +50,13 @@ typedef struct tagDBID { } uName; } DBID;
+typedef struct tagDB_NUMERIC { + BYTE precision; + BYTE scale; + BYTE sign; + BYTE val[16]; +} DB_NUMERIC; + typedef DWORD DBPROPID;
typedef struct tagDBPROPIDSET {