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
25a3ff6a
Commit
25a3ff6a
authored
Dec 15, 2004
by
Jon Griffiths
Committed by
Alexandre Julliard
Dec 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include shlwapi.h to get prototypes, and correct 2 wrong ones.
parent
7b188952
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
wsprintf.c
dlls/shlwapi/wsprintf.c
+4
-4
No files found.
dlls/shlwapi/wsprintf.c
View file @
25a3ff6a
...
...
@@ -28,8 +28,8 @@
#include "windef.h"
#include "winbase.h"
#
include "wingdi.h"
#include "
winuser
.h"
#
define NO_SHLWAPI_REG
#include "
shlwapi
.h"
#include "wine/debug.h"
...
...
@@ -284,7 +284,7 @@ static UINT WPRINTF_GetLen( WPRINTF_FORMAT *format, WPRINTF_DATA *arg,
* Success: The number of characters written.
* Failure: -1.
*/
INT
WINAPI
wvnsprintfA
(
LPSTR
buffer
,
U
INT
maxlen
,
LPCSTR
spec
,
va_list
args
)
INT
WINAPI
wvnsprintfA
(
LPSTR
buffer
,
INT
maxlen
,
LPCSTR
spec
,
va_list
args
)
{
WPRINTF_FORMAT
format
;
LPSTR
p
=
buffer
;
...
...
@@ -389,7 +389,7 @@ INT WINAPI wvnsprintfA( LPSTR buffer, UINT maxlen, LPCSTR spec, va_list args )
*
* See wvnsprintfA.
*/
INT
WINAPI
wvnsprintfW
(
LPWSTR
buffer
,
U
INT
maxlen
,
LPCWSTR
spec
,
va_list
args
)
INT
WINAPI
wvnsprintfW
(
LPWSTR
buffer
,
INT
maxlen
,
LPCWSTR
spec
,
va_list
args
)
{
WPRINTF_FORMAT
format
;
LPWSTR
p
=
buffer
;
...
...
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