Commit 5f5b576a authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

Added stub for SetSystemCursor.

parent 8bf29f17
......@@ -3363,6 +3363,7 @@ INT WINAPI SetScrollPos(HWND,INT,INT,BOOL);
BOOL WINAPI SetScrollRange(HWND,INT,INT,INT,BOOL);
BOOL WINAPI SetSysColors(INT,const INT*,const COLORREF*);
#define SetSysModalWindow(hwnd) ((HWND)0)
BOOL WINAPI SetSystemCursor(HCURSOR,DWORD);
BOOL WINAPI SetSystemMenu(HWND,HMENU);
UINT WINAPI SetSystemTimer(HWND,UINT,UINT,TIMERPROC);
UINT WINAPI SetTimer(HWND,UINT,UINT,TIMERPROC);
......
......@@ -508,7 +508,7 @@ init MAIN_UserInit
504 stdcall SetShellWindow(long) SetShellWindow
505 stdcall SetSysColors(long ptr ptr) SetSysColors
506 stub SetSysColorsTemp
507 stub SetSystemCursor
507 stdcall SetSystemCursor(long long) SetSystemCursor
508 stdcall SetSystemMenu(long long) SetSystemMenu
509 stdcall SetSystemTimer(long long long ptr) SetSystemTimer
510 stdcall SetThreadDesktop(long) SetThreadDesktop
......
......@@ -501,3 +501,11 @@ BOOL WINAPI GetUserObjectSecurity(HANDLE hObj, SECURITY_INFORMATION * pSIRequest
{ FIXME(win32,"(0x%x %p %p len=%ld %p),stub!\n", hObj, pSIRequested, pSID, nLength, lpnLengthNeeded);
return TRUE;
}
/***********************************************************************
* SetSystemCursor (USER32.507)
*/
BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
{ FIXME(win32,"(%08x,%08x),stub!\n", hcur, id);
return TRUE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment