move and correct the MSIDBOPEN defines

Mike McCormack mike at codeweavers.com
Tue Nov 4 04:35:39 CST 2003


ChangeLog:
* move and correct the MSIDBOPEN defines
-------------- next part --------------
Index: include/msi.h
===================================================================
RCS file: /home/wine/wine/include/msi.h,v
retrieving revision 1.3
diff -u -r1.3 msi.h
--- include/msi.h	30 Oct 2003 22:47:42 -0000	1.3
+++ include/msi.h	4 Nov 2003 10:29:28 -0000
@@ -46,11 +46,6 @@
     INSTALLUILEVEL_FULL = 5
 } INSTALLUILEVEL;
 
-#define MSIDBOPEN_READONLY 0
-#define MSIDBOPEN_TRANSACT 1
-#define MSIDBOPEN_DIRECT 2
-#define MSIDBOPEN_CREATE 3
-
 
 UINT WINAPI MsiInstallProductA(LPCSTR, LPCSTR);
 UINT WINAPI MsiInstallProductW(LPCWSTR, LPCWSTR);
Index: include/msiquery.h
===================================================================
RCS file: /home/wine/wine/include/msiquery.h,v
retrieving revision 1.3
diff -u -r1.3 msiquery.h
--- include/msiquery.h	27 Sep 2003 02:19:48 -0000	1.3
+++ include/msiquery.h	4 Nov 2003 10:29:28 -0000
@@ -55,6 +55,12 @@
 
 #define MSI_NULL_INTEGER 0x80000000
 
+#define MSIDBOPEN_READONLY (LPCTSTR)0
+#define MSIDBOPEN_TRANSACT (LPCTSTR)1
+#define MSIDBOPEN_DIRECT   (LPCTSTR)2
+#define MSIDBOPEN_CREATE   (LPCTSTR)3
+
+
 /* view manipulation */
 UINT WINAPI MsiViewFetch(MSIHANDLE,MSIHANDLE*);
 UINT WINAPI MsiViewExecute(MSIHANDLE,MSIHANDLE);


More information about the wine-patches mailing list