MSI: include a System16Folder definition

Mike McCormack mike at codeweavers.com
Fri Dec 24 01:32:52 CST 2004


ChangeLog:
<aric at codeweavers.com>
* include a System16Folder definition
-------------- next part --------------
Index: dlls/msi/package.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/package.c,v
retrieving revision 1.24
diff -u -r1.24 package.c
--- dlls/msi/package.c	22 Dec 2004 18:47:54 -0000	1.24
+++ dlls/msi/package.c	24 Dec 2004 07:32:16 -0000
@@ -203,6 +203,8 @@
 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
     static const WCHAR SF[] = 
 {'S','y','s','t','e','m','F','o','l','d','e','r',0};
+    static const WCHAR SF16[] = 
+{'S','y','s','t','e','m','1','6','F','o','l','d','e','r',0};
     static const WCHAR LADF[] = 
 {'L','o','c','a','l','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
     static const WCHAR MPF[] = 
@@ -318,6 +320,7 @@
     SHGetFolderPathW(NULL,CSIDL_SYSTEM,NULL,0,pth);
     strcatW(pth,cszbs);
     MSI_SetPropertyW(package, SF, pth);
+    MSI_SetPropertyW(package, SF16, pth);
 
     SHGetFolderPathW(NULL,CSIDL_LOCAL_APPDATA,NULL,0,pth);
     strcatW(pth,cszbs);


More information about the wine-patches mailing list