rstrtmgr: Use correct type for status parameter in RmRestart.

Sebastian Lackner sebastian at fds-team.de
Thu Jan 26 09:48:28 CST 2017


Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
---

Depends on http://source.winehq.org/patches/data/129113.

 dlls/rstrtmgr/main.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/rstrtmgr/main.c b/dlls/rstrtmgr/main.c
index 5c9a8dc1c63..433bd174bac 100644
--- a/dlls/rstrtmgr/main.c
+++ b/dlls/rstrtmgr/main.c
@@ -86,9 +86,9 @@ DWORD WINAPI RmStartSession(DWORD *sessionhandle, DWORD flags, WCHAR sessionkey[
 /***********************************************************************
  * RmRestart (rstrtmgr.@)
  */
-DWORD WINAPI RmRestart(DWORD handle, DWORD flags, void *fnstatus)
+DWORD WINAPI RmRestart(DWORD handle, DWORD flags, RM_WRITE_STATUS_CALLBACK status)
 {
-    FIXME("%u, 0x%08x, %p stub!\n", handle, flags, fnstatus);
+    FIXME("%u, 0x%08x, %p stub!\n", handle, flags, status);
     return ERROR_CALL_NOT_IMPLEMENTED;
 }
 
-- 
2.11.0



More information about the wine-patches mailing list