Author: akhaldi Date: Fri Feb 28 16:21:10 2014 New Revision: 62355
URL: http://svn.reactos.org/svn/reactos?rev=62355&view=rev Log: [USER32] * Mark as hotpatchable. * Uncomment out the hot patching attribute for ShowCursor() now that the feature is supported. * More will come. CORE-7959
Modified: trunk/reactos/win32ss/user/user32/CMakeLists.txt trunk/reactos/win32ss/user/user32/windows/cursoricon.c
Modified: trunk/reactos/win32ss/user/user32/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/user32/CMakeLi... ============================================================================== --- trunk/reactos/win32ss/user/user32/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/win32ss/user/user32/CMakeLists.txt [iso-8859-1] Fri Feb 28 16:21:10 2014 @@ -71,7 +71,7 @@ user32.rc ${CMAKE_CURRENT_BINARY_DIR}/user32.def)
-set_module_type(user32 win32dll ENTRYPOINT DllMain 12 UNICODE) +set_module_type(user32 win32dll ENTRYPOINT DllMain 12 UNICODE HOTPATCHABLE) target_link_libraries(user32 user32_wsprintf wine win32ksys ${PSEH_LIB})
if(MSVC)
Modified: trunk/reactos/win32ss/user/user32/windows/cursoricon.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/user32/windows... ============================================================================== --- trunk/reactos/win32ss/user/user32/windows/cursoricon.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/user/user32/windows/cursoricon.c [iso-8859-1] Fri Feb 28 16:21:10 2014 @@ -1252,7 +1252,7 @@ /*********************************************************************** * ShowCursor (USER32.@) */ -INT WINAPI /*DECLSPEC_HOTPATCH*/ ShowCursor( BOOL bShow ) +INT WINAPI DECLSPEC_HOTPATCH ShowCursor( BOOL bShow ) { return NtUserxShowCursor(bShow); }