Added stub for SetSystemCursor.

This commit is contained in:
Lionel Ulmer 1999-03-28 13:42:12 +00:00 committed by Alexandre Julliard
parent 8bf29f1708
commit 5f5b576a45
3 changed files with 10 additions and 1 deletions

View File

@ -3363,6 +3363,7 @@ INT WINAPI SetScrollPos(HWND,INT,INT,BOOL);
BOOL WINAPI SetScrollRange(HWND,INT,INT,INT,BOOL); BOOL WINAPI SetScrollRange(HWND,INT,INT,INT,BOOL);
BOOL WINAPI SetSysColors(INT,const INT*,const COLORREF*); BOOL WINAPI SetSysColors(INT,const INT*,const COLORREF*);
#define SetSysModalWindow(hwnd) ((HWND)0) #define SetSysModalWindow(hwnd) ((HWND)0)
BOOL WINAPI SetSystemCursor(HCURSOR,DWORD);
BOOL WINAPI SetSystemMenu(HWND,HMENU); BOOL WINAPI SetSystemMenu(HWND,HMENU);
UINT WINAPI SetSystemTimer(HWND,UINT,UINT,TIMERPROC); UINT WINAPI SetSystemTimer(HWND,UINT,UINT,TIMERPROC);
UINT WINAPI SetTimer(HWND,UINT,UINT,TIMERPROC); UINT WINAPI SetTimer(HWND,UINT,UINT,TIMERPROC);

View File

@ -508,7 +508,7 @@ init MAIN_UserInit
504 stdcall SetShellWindow(long) SetShellWindow 504 stdcall SetShellWindow(long) SetShellWindow
505 stdcall SetSysColors(long ptr ptr) SetSysColors 505 stdcall SetSysColors(long ptr ptr) SetSysColors
506 stub SetSysColorsTemp 506 stub SetSysColorsTemp
507 stub SetSystemCursor 507 stdcall SetSystemCursor(long long) SetSystemCursor
508 stdcall SetSystemMenu(long long) SetSystemMenu 508 stdcall SetSystemMenu(long long) SetSystemMenu
509 stdcall SetSystemTimer(long long long ptr) SetSystemTimer 509 stdcall SetSystemTimer(long long long ptr) SetSystemTimer
510 stdcall SetThreadDesktop(long) SetThreadDesktop 510 stdcall SetThreadDesktop(long) SetThreadDesktop

View File

@ -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); { FIXME(win32,"(0x%x %p %p len=%ld %p),stub!\n", hObj, pSIRequested, pSID, nLength, lpnLengthNeeded);
return TRUE; return TRUE;
} }
/***********************************************************************
* SetSystemCursor (USER32.507)
*/
BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
{ FIXME(win32,"(%08x,%08x),stub!\n", hcur, id);
return TRUE;
}