Qian Hong : user32: Make CreateWindowExA and CreateWindowExW hotpatchable.

Alexandre Julliard julliard at winehq.org
Fri May 24 11:12:44 CDT 2013


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

Author: Qian Hong <qhong at codeweavers.com>
Date:   Fri May 24 15:24:11 2013 +0800

user32: Make CreateWindowExA and CreateWindowExW hotpatchable.

---

 dlls/user32/win.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/win.c b/dlls/user32/win.c
index db4881a..1b4d34b 100644
--- a/dlls/user32/win.c
+++ b/dlls/user32/win.c
@@ -1682,7 +1682,7 @@ failed:
 /***********************************************************************
  *		CreateWindowExA (USER32.@)
  */
-HWND WINAPI CreateWindowExA( DWORD exStyle, LPCSTR className,
+HWND WINAPI DECLSPEC_HOTPATCH CreateWindowExA( DWORD exStyle, LPCSTR className,
                                  LPCSTR windowName, DWORD style, INT x,
                                  INT y, INT width, INT height,
                                  HWND parent, HMENU menu,
@@ -1719,7 +1719,7 @@ HWND WINAPI CreateWindowExA( DWORD exStyle, LPCSTR className,
 /***********************************************************************
  *		CreateWindowExW (USER32.@)
  */
-HWND WINAPI CreateWindowExW( DWORD exStyle, LPCWSTR className,
+HWND WINAPI DECLSPEC_HOTPATCH CreateWindowExW( DWORD exStyle, LPCWSTR className,
                                  LPCWSTR windowName, DWORD style, INT x,
                                  INT y, INT width, INT height,
                                  HWND parent, HMENU menu,




More information about the wine-cvs mailing list