user32: stub for DisableProcessWindowsGhosting()

Nikolay Sivov bunglehead at gmail.com
Tue May 26 17:57:26 CDT 2009


http://bugs.winehq.org/show_bug.cgi?id=18637


Changelog:
    - Add a stub for DisableProcessWindowsGhosting

>From 7912dc63a879503c3e4c181fc3d48ad72d0c5a22 Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <bunglehead at gmail.com>
Date: Wed, 27 May 2009 02:54:34 +0400
Subject: Add a stub for DisableProcessWindowsGhosting

---
 dlls/user32/misc.c      |   12 ++++++++++++
 dlls/user32/user32.spec |    2 +-
 2 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/dlls/user32/misc.c b/dlls/user32/misc.c
index 9de9b91..186d9b5 100644
--- a/dlls/user32/misc.c
+++ b/dlls/user32/misc.c
@@ -706,3 +706,15 @@ LRESULT WINAPI SendIMEMessageExW(HWND p1, LPARAM p2)
   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
   return 0;
 }
+
+/**********************************************************************
+ * DisableProcessWindowsGhosting [USER32.@]
+ *
+ */
+VOID WINAPI DisableProcessWindowsGhosting(VOID)
+{
+  FIXME(": stub\n");
+  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+  return;
+}
+
diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec
index 8efdf0a..cae0bed 100644
--- a/dlls/user32/user32.spec
+++ b/dlls/user32/user32.spec
@@ -163,7 +163,7 @@
 @ stdcall DialogBoxIndirectParamW(long ptr long ptr long)
 @ stdcall DialogBoxParamA(long str long ptr long)
 @ stdcall DialogBoxParamW(long wstr long ptr long)
-# @ stub DisableProcessWindowsGhosting
+@ stdcall DisableProcessWindowsGhosting()
 @ stdcall DispatchMessageA(ptr)
 @ stdcall DispatchMessageW(ptr)
 # @ stub DisplayExitWindowsWarnings
-- 
1.5.6.5





More information about the wine-patches mailing list