slwapi: Make function definitions and declarations agree (2 of 2)

Andrew Talbot Andrew.Talbot at talbotville.com
Sat Apr 14 07:49:42 CDT 2007


Note: For this function, I believe that the external declaration (in url.c)
is correct, rather than the definition.

-- Andy.
---
Changelog:
    slwapi: Make function definitions and declarations agree.

diff -urN a/dlls/shlwapi/ordinal.c b/dlls/shlwapi/ordinal.c
--- a/dlls/shlwapi/ordinal.c	2007-03-29 20:44:32.000000000 +0100
+++ b/dlls/shlwapi/ordinal.c	2007-04-14 12:35:58.000000000 +0100
@@ -3314,13 +3314,13 @@
  *
  * Unicode version of MLLoadLibraryA.
  */
-HMODULE WINAPI MLLoadLibraryW(LPCWSTR new_mod, HMODULE inst_hwnd, BOOL bCrossCodePage)
+HMODULE WINAPI MLLoadLibraryW(LPCWSTR new_mod, HMODULE inst_hwnd, DWORD dwCrossCodePage)
 {
     WCHAR mod_path[2*MAX_PATH];
     LPWSTR ptr;
     DWORD len;
 
-    FIXME("(%s,%p,%d) semi-stub!\n", debugstr_w(new_mod), inst_hwnd, bCrossCodePage);
+    FIXME("(%s,%p,%d) semi-stub!\n", debugstr_w(new_mod), inst_hwnd, dwCrossCodePage);
     len = GetModuleFileNameW(inst_hwnd, mod_path, sizeof(mod_path) / sizeof(WCHAR));
     if (!len || len >= sizeof(mod_path) / sizeof(WCHAR)) return NULL;
 



More information about the wine-patches mailing list