Nikolay Sivov : user32: Add a stub for DisableProcessWindowsGhosting.

Alexandre Julliard julliard at winehq.org
Wed May 27 09:26:51 CDT 2009


Module: wine
Branch: master
Commit: 25dac198c379ddfafe315f722736c613d62a56d1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=25dac198c379ddfafe315f722736c613d62a56d1

Author: Nikolay Sivov <bunglehead at gmail.com>
Date:   Wed May 27 02:54:34 2009 +0400

user32: Add a stub for DisableProcessWindowsGhosting.

---

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

diff --git a/dlls/user32/misc.c b/dlls/user32/misc.c
index 9de9b91..8e7f48f 100644
--- a/dlls/user32/misc.c
+++ b/dlls/user32/misc.c
@@ -706,3 +706,14 @@ 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




More information about the wine-cvs mailing list