Skip to content
Snippets Groups Projects
Commit 06b39679 authored by Rémi Assailly's avatar Rémi Assailly Committed by Alexandre Julliard
Browse files

user32: Renamed and moved SetDeskPattern.

parent 6e9fea22
No related branches found
No related tags found
No related merge requests found
...@@ -178,15 +178,6 @@ BOOL WINAPI PaintDesktop(HDC hdc) ...@@ -178,15 +178,6 @@ BOOL WINAPI PaintDesktop(HDC hdc)
return TRUE; return TRUE;
} }
/***********************************************************************
* OldSetDeskPattern (USER.279)
*/
BOOL16 WINAPI SetDeskPattern(void)
{
return SystemParametersInfoA( SPI_SETDESKPATTERN, -1, NULL, FALSE );
}
/*********************************************************************** /***********************************************************************
* SetDeskWallPaper (USER32.@) * SetDeskWallPaper (USER32.@)
* *
......
...@@ -276,7 +276,7 @@ ...@@ -276,7 +276,7 @@
276 stub LockMyTask 276 stub LockMyTask
277 pascal -ret16 GetDlgCtrlID(word) GetDlgCtrlID16 277 pascal -ret16 GetDlgCtrlID(word) GetDlgCtrlID16
278 pascal -ret16 GetDesktopHwnd() GetDesktopHwnd16 278 pascal -ret16 GetDesktopHwnd() GetDesktopHwnd16
279 pascal -ret16 OldSetDeskPattern() SetDeskPattern 279 pascal -ret16 OldSetDeskPattern() SetDeskPattern16
280 pascal -ret16 SetSystemMenu(word word) SetSystemMenu16 280 pascal -ret16 SetSystemMenu(word word) SetSystemMenu16
281 pascal -ret16 GetSysColorBrush(word) GetSysColorBrush16 281 pascal -ret16 GetSysColorBrush(word) GetSysColorBrush16
282 pascal -ret16 SelectPalette(word word word) SelectPalette16 282 pascal -ret16 SelectPalette(word word word) SelectPalette16
......
...@@ -926,6 +926,15 @@ void WINAPI ControlPanelInfo16( INT16 nInfoType, WORD wData, LPSTR lpBuffer ) ...@@ -926,6 +926,15 @@ void WINAPI ControlPanelInfo16( INT16 nInfoType, WORD wData, LPSTR lpBuffer )
} }
/***********************************************************************
* OldSetDeskPattern (USER.279)
*/
BOOL16 WINAPI SetDeskPattern16(void)
{
return SystemParametersInfoA( SPI_SETDESKPATTERN, -1, NULL, FALSE );
}
/*********************************************************************** /***********************************************************************
* GetSysColorBrush (USER.281) * GetSysColorBrush (USER.281)
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment