dlls/shell32/shelllink.c

Ge van Geldorp gvg at reactos.com
Wed Sep 22 15:17:22 CDT 2004


Changelog:
  Martin Fuchs <martin-fuchs at gmx.net>
  - At least print message if we're not returning requested data

Index: shelllink.c
===================================================================
RCS file: /home/wine/wine/dlls/shell32/shelllink.c,v
retrieving revision 1.76
diff -u -r1.76 shelllink.c
--- shelllink.c	22 Sep 2004 19:11:27 -0000	1.76
+++ shelllink.c	22 Sep 2004 20:12:23 -0000
@@ -1027,6 +1027,12 @@
         WideCharToMultiByte( CP_ACP, 0, This->sPath, -1,
                              pszFile, cchMaxPath, NULL, NULL);
 
+	if (pfd) {
+
+		FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This);
+
+	}
+
     return NOERROR;
 }
 
@@ -1430,11 +1436,19 @@
 {
     _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
 
-    FIXME("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)\n",This, pszFile, cchMaxPath, pfd, fFlags);
+    TRACE("(%p)->(pfile=%p len=%u find_data=%p flags=%lu)\n",
+		  This, pszFile, cchMaxPath, pfd, fFlags);
+
     if( cchMaxPath )
         pszFile[0] = 0;
     if( This->sPath )
         lstrcpynW( pszFile, This->sPath, cchMaxPath );
+
+	if (pfd) {
+
+		FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This);
+
+	}
 
     return NOERROR;
 }



More information about the wine-patches mailing list