msi: add 2 more stubs

Aric Stewart aric at codeweavers.com
Thu Feb 10 04:45:18 CST 2005


add stubs for MsiGetShortcutTargetA/W
-------------- next part --------------
Index: dlls/msi/msi.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.c,v
retrieving revision 1.58
diff -u -u -r1.58 msi.c
--- dlls/msi/msi.c	9 Feb 2005 13:22:49 -0000	1.58
+++ dlls/msi/msi.c	10 Feb 2005 10:46:05 -0000
@@ -1733,3 +1733,19 @@
     FIXME("\n");
     return ERROR_CALL_NOT_IMPLEMENTED;
 }
+
+UINT WINAPI MsiGetShortcutTargetA( LPCSTR szShortcutTarget,
+                                  LPSTR szProductCode, LPSTR szFeatureId,
+                                  LPSTR szComponentCode)
+{
+    FIXME("\n");
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+UINT WINAPI MsiGetShortcutTargetW( LPCWSTR szShortcutTarget,
+                                  LPWSTR szProductCode, LPWSTR szFeatureId,
+                                  LPWSTR szComponentCode)
+{
+    FIXME("\n");
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
Index: dlls/msi/msi.spec
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.spec,v
retrieving revision 1.31
diff -u -u -r1.31 msi.spec
--- dlls/msi/msi.spec	1 Feb 2005 14:21:03 -0000	1.31
+++ dlls/msi/msi.spec	10 Feb 2005 10:46:05 -0000
@@ -213,8 +213,8 @@
 213 stub MsiSourceListForceResolutionW
 214 stub MsiIsProductElevatedA
 215 stub MsiIsProductElevatedW
-216 stub MsiGetShortcutTargetA
-217 stub MsiGetShortcutTargetW
+216 stdcall MsiGetShortcutTargetA(str ptr ptr ptr)
+217 stdcall MsiGetShortcutTargetW(wstr ptr ptr ptr)
 218 stub MsiGetFileHashA
 219 stub MsiGetFileHashW
 220 stub MsiEnumComponentCostsA


More information about the wine-patches mailing list