[PATCH 1/2] oledb32: Implement support for converting to DBTYPE_I1.

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Thu May 30 03:35:32 CDT 2019


Hi Owen,

+    case DBTYPE_I1:
+    {
+        signed char *d = dst;
+        switch(src_type)
+        {
+        case DBTYPE_EMPTY:       *d = 0; hr = S_OK;                              break;
+        case DBTYPE_I1:          *d = *(signed char*)src; hr = S_OK;             break;
+        case DBTYPE_I2:          hr = VarI1FromI2(*(signed short*)src, d); hr = S_OK; break;
Any reason you faking success here?

Regards
Alistair

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-devel/attachments/20190530/0db70fc2/attachment.html>


More information about the wine-devel mailing list