user.exe: Rename SetDeskWallPaper to SetDeskWallpaper.
Although 16-bit function names are not case sensitive, it's best to match the 32-bit version.
This commit is contained in:
parent
adfaef5a86
commit
c6f121df19
3 changed files with 4 additions and 4 deletions
|
@ -1824,9 +1824,9 @@ WORD WINAPI GetFreeSystemResources16( WORD resType )
|
|||
|
||||
|
||||
/***********************************************************************
|
||||
* SetDeskWallPaper (USER.285)
|
||||
* SetDeskWallpaper (USER.285)
|
||||
*/
|
||||
BOOL16 WINAPI SetDeskWallPaper16( LPCSTR filename )
|
||||
BOOL16 WINAPI SetDeskWallpaper16( const char *filename )
|
||||
{
|
||||
return SetDeskWallpaper( filename );
|
||||
}
|
||||
|
|
|
@ -282,7 +282,7 @@
|
|||
282 pascal -ret16 SelectPalette(word word word) SelectPalette16
|
||||
283 pascal -ret16 RealizePalette(word) RealizePalette16
|
||||
284 pascal -ret16 GetFreeSystemResources(word) GetFreeSystemResources16
|
||||
285 pascal -ret16 SetDeskWallPaper(ptr) SetDeskWallPaper16 # BEAR285
|
||||
285 pascal -ret16 SetDeskWallpaper(str) SetDeskWallpaper16 # BEAR285
|
||||
286 pascal -ret16 GetDesktopWindow() GetDesktopWindow16
|
||||
287 pascal -ret16 GetLastActivePopup(word) GetLastActivePopup16
|
||||
288 pascal GetMessageExtraInfo() GetMessageExtraInfo
|
||||
|
|
|
@ -880,7 +880,7 @@ HWND16 WINAPI SetClipboardViewer16(HWND16);
|
|||
INT16 WINAPI SetCommBreak16(INT16);
|
||||
HCURSOR16 WINAPI SetCursor16(HCURSOR16);
|
||||
void WINAPI SetCursorPos16(INT16,INT16);
|
||||
BOOL16 WINAPI SetDeskWallPaper16(LPCSTR);
|
||||
BOOL16 WINAPI SetDeskWallpaper16(const char*);
|
||||
void WINAPI SetDlgItemInt16(HWND16,INT16,UINT16,BOOL16);
|
||||
void WINAPI SetDlgItemText16(HWND16,INT16,SEGPTR);
|
||||
VOID WINAPI SetDoubleClickTime16(UINT16);
|
||||
|
|
Loading…
Add table
Reference in a new issue