[PATCH resend] shell32: Rename SHELL32_714 to PathIsTemporaryW

Alex Henrie alexhenrie24 at gmail.com
Tue Jan 22 23:48:45 CST 2019


Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
---
This function is documented at
http://undoc.airesoft.co.uk/shell32.dll/PathIsTemporaryW.php
---
 dlls/shell32/shell32.spec | 2 +-
 dlls/shell32/shellord.c   | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec
index bf8b5121d7..771f5e38d9 100644
--- a/dlls/shell32/shell32.spec
+++ b/dlls/shell32/shell32.spec
@@ -260,7 +260,7 @@
  701 stdcall CDefFolderMenu_Create2(ptr ptr long ptr ptr ptr long ptr ptr)
  704 stdcall -noname GUIDFromStringW(wstr ptr)
  709 stdcall SHGetSetFolderCustomSettings(ptr wstr long)
- 714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
+ 714 stdcall -noname PathIsTemporaryW(wstr)
  723 stdcall -noname SHCreateSessionKey(long ptr)
  727 stdcall SHGetImageList(long ptr ptr)
  730 stdcall -noname RestartDialogEx(long wstr long long)
diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c
index 6ed0c9000f..b04a56e783 100644
--- a/dlls/shell32/shellord.c
+++ b/dlls/shell32/shellord.c
@@ -1623,12 +1623,12 @@ BOOL WINAPI GUIDFromStringW(LPCWSTR str, LPGUID guid)
 }
 
 /*************************************************************************
- *      @	[SHELL32.714]
+ *      PathIsTemporaryW	[SHELL32.714]
  */
-DWORD WINAPI SHELL32_714(LPVOID x)
+BOOL WINAPI PathIsTemporaryW(const WCHAR *path)
 {
- 	FIXME("(%s)stub\n", debugstr_w(x));
-	return 0;
+    FIXME("(%s) stub\n", debugstr_w(path));
+    return FALSE;
 }
 
 typedef struct _PSXA
-- 
2.20.1




More information about the wine-devel mailing list