Added stub for SetSystemCursor.
This commit is contained in:
parent
8bf29f1708
commit
5f5b576a45
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue