Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
adfaef5a
Commit
adfaef5a
authored
Dec 07, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Dec 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Correct capitalization of SetDeskWallpaper.
Spotted by Vijay Kiran Kamuju.
parent
ba4bc623
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
9 deletions
+5
-9
user.c
dlls/user.exe16/user.c
+1
-1
desktop.c
dlls/user32/desktop.c
+2
-5
user32.spec
dlls/user32/user32.spec
+1
-2
winuser.h
include/winuser.h
+1
-1
No files found.
dlls/user.exe16/user.c
View file @
adfaef5a
...
...
@@ -1828,7 +1828,7 @@ WORD WINAPI GetFreeSystemResources16( WORD resType )
*/
BOOL16
WINAPI
SetDeskWallPaper16
(
LPCSTR
filename
)
{
return
SetDeskWall
P
aper
(
filename
);
return
SetDeskWall
p
aper
(
filename
);
}
...
...
dlls/user32/desktop.c
View file @
adfaef5a
...
...
@@ -151,16 +151,13 @@ BOOL WINAPI PaintDesktop(HDC hdc)
}
/***********************************************************************
* SetDeskWallPaper (USER32.@)
*
* FIXME: is there a unicode version?
* SetDeskWallpaper (USER32.@)
*/
BOOL
WINAPI
SetDeskWall
Paper
(
LPCSTR
filename
)
BOOL
WINAPI
SetDeskWall
paper
(
const
char
*
filename
)
{
return
SystemParametersInfoA
(
SPI_SETDESKWALLPAPER
,
MAX_PATH
,
(
void
*
)
filename
,
SPIF_UPDATEINIFILE
);
}
/***********************************************************************
* update_wallpaper
*/
...
...
dlls/user32/user32.spec
View file @
adfaef5a
...
...
@@ -671,8 +671,7 @@
@ stub SetCursorContents
@ stdcall -import SetCursorPos(long long) NtUserSetCursorPos
@ stdcall SetDebugErrorLevel(long)
@ stdcall SetDeskWallPaper(str)
# @ stub SetDeskWallpaper
@ stdcall SetDeskWallpaper(str)
# @ stub SetDesktopBitmap
@ stdcall SetDisplayAutoRotationPreferences(long)
@ stdcall SetDisplayConfig(long ptr long ptr long)
...
...
include/winuser.h
View file @
adfaef5a
...
...
@@ -4568,7 +4568,7 @@ WINUSERAPI UINT_PTR WINAPI SetCoalescableTimer(HWND,UINT_PTR,UINT,TIMERPROC,U
WINUSERAPI
HCURSOR
WINAPI
SetCursor
(
HCURSOR
);
WINUSERAPI
BOOL
WINAPI
SetCursorPos
(
INT
,
INT
);
WINUSERAPI
VOID
WINAPI
SetDebugErrorLevel
(
DWORD
);
WINUSERAPI
BOOL
WINAPI
SetDeskWall
Paper
(
LPCSTR
);
WINUSERAPI
BOOL
WINAPI
SetDeskWall
paper
(
const
char
*
);
WINUSERAPI
BOOL
WINAPI
SetDisplayAutoRotationPreferences
(
ORIENTATION_PREFERENCE
);
WINUSERAPI
BOOL
WINAPI
SetDlgItemInt
(
HWND
,
INT
,
UINT
,
BOOL
);
WINUSERAPI
BOOL
WINAPI
SetDlgItemTextA
(
HWND
,
INT
,
LPCSTR
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment