Commit c6f121df authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

user.exe: Rename SetDeskWallPaper to SetDeskWallpaper.

Although 16-bit function names are not case sensitive, it's best to match the 32-bit version.
parent adfaef5a
...@@ -1824,9 +1824,9 @@ WORD WINAPI GetFreeSystemResources16( WORD resType ) ...@@ -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 ); return SetDeskWallpaper( filename );
} }
......
...@@ -282,7 +282,7 @@ ...@@ -282,7 +282,7 @@
282 pascal -ret16 SelectPalette(word word word) SelectPalette16 282 pascal -ret16 SelectPalette(word word word) SelectPalette16
283 pascal -ret16 RealizePalette(word) RealizePalette16 283 pascal -ret16 RealizePalette(word) RealizePalette16
284 pascal -ret16 GetFreeSystemResources(word) GetFreeSystemResources16 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 286 pascal -ret16 GetDesktopWindow() GetDesktopWindow16
287 pascal -ret16 GetLastActivePopup(word) GetLastActivePopup16 287 pascal -ret16 GetLastActivePopup(word) GetLastActivePopup16
288 pascal GetMessageExtraInfo() GetMessageExtraInfo 288 pascal GetMessageExtraInfo() GetMessageExtraInfo
......
...@@ -880,7 +880,7 @@ HWND16 WINAPI SetClipboardViewer16(HWND16); ...@@ -880,7 +880,7 @@ HWND16 WINAPI SetClipboardViewer16(HWND16);
INT16 WINAPI SetCommBreak16(INT16); INT16 WINAPI SetCommBreak16(INT16);
HCURSOR16 WINAPI SetCursor16(HCURSOR16); HCURSOR16 WINAPI SetCursor16(HCURSOR16);
void WINAPI SetCursorPos16(INT16,INT16); void WINAPI SetCursorPos16(INT16,INT16);
BOOL16 WINAPI SetDeskWallPaper16(LPCSTR); BOOL16 WINAPI SetDeskWallpaper16(const char*);
void WINAPI SetDlgItemInt16(HWND16,INT16,UINT16,BOOL16); void WINAPI SetDlgItemInt16(HWND16,INT16,UINT16,BOOL16);
void WINAPI SetDlgItemText16(HWND16,INT16,SEGPTR); void WINAPI SetDlgItemText16(HWND16,INT16,SEGPTR);
VOID WINAPI SetDoubleClickTime16(UINT16); VOID WINAPI SetDoubleClickTime16(UINT16);
......
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