mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[USER32]
* Mark as hotpatchable. * Uncomment out the hot patching attribute for ShowCursor() now that the feature is supported. * More will come. CORE-7959 svn path=/trunk/; revision=62355
This commit is contained in:
@@ -71,7 +71,7 @@ add_library(user32 SHARED
|
||||
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)
|
||||
|
||||
@@ -1252,7 +1252,7 @@ BOOL WINAPI DrawIcon( HDC hdc, INT x, INT y, HICON hIcon )
|
||||
/***********************************************************************
|
||||
* ShowCursor (USER32.@)
|
||||
*/
|
||||
INT WINAPI /*DECLSPEC_HOTPATCH*/ ShowCursor( BOOL bShow )
|
||||
INT WINAPI DECLSPEC_HOTPATCH ShowCursor( BOOL bShow )
|
||||
{
|
||||
return NtUserxShowCursor(bShow);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user