Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
d50a5b3f
Commit
d50a5b3f
authored
23 years ago
by
Peter Hunnisett
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add shlwapi.wvnsprintf[AW], header info and comments.
parent
7736876a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/shlwapi/shlwapi.spec
+4
-2
4 additions, 2 deletions
dlls/shlwapi/shlwapi.spec
include/shlwapi.h
+7
-0
7 additions, 0 deletions
include/shlwapi.h
with
11 additions
and
2 deletions
dlls/shlwapi/shlwapi.spec
+
4
−
2
View file @
d50a5b3f
...
...
@@ -687,8 +687,10 @@ debug_channels (shell)
@ stub UrlIsW
@ stdcall UrlUnescapeA(str ptr ptr long) UrlUnescapeA
@ stdcall UrlUnescapeW(wstr ptr ptr long) UrlUnescapeW
@ varargs wnsprintfA(ptr long str)wnsprintfA
@ varargs wnsprintfW(ptr long wstr)wnsprintfW
@ varargs wnsprintfA(ptr long str) wnsprintfA
@ varargs wnsprintfW(ptr long wstr) wnsprintfW
@ forward wvnsprintfA user32.wvsnprintfA
@ forward wvnsprintfW user32.wvsnprintfW
# exported in later versions
...
...
This diff is collapsed.
Click to expand it.
include/shlwapi.h
+
7
−
0
View file @
d50a5b3f
...
...
@@ -199,6 +199,13 @@ LPSTR WINAPI StrFormatByteSizeA ( DWORD dw, LPSTR pszBuf, UINT cchBuf );
LPWSTR
WINAPI
StrFormatByteSizeW
(
DWORD
dw
,
LPWSTR
pszBuf
,
UINT
cchBuf
);
#define StrFormatByteSize WINELIB_NAME_AW(StrFormatByteSize)
INT
WINAPI
wvnsprintfA
(
LPSTR
lpOut
,
INT
cchLimitIn
,
LPCSTR
lpFmt
,
va_list
arglist
);
INT
WINAPI
wvnsprintfW
(
LPWSTR
lpOut
,
INT
cchLimitIn
,
LPCWSTR
lpFmt
,
va_list
arglist
);
#define wvnsprintf WINELIB_NAME_AW(wvnsprintf)
INT
WINAPIV
wnsprintfA
(
LPSTR
lpOut
,
INT
cchLimitIn
,
LPCSTR
lpFmt
,
...);
INT
WINAPIV
wnsprintfW
(
LPWSTR
lpOut
,
INT
cchLimitIn
,
LPCWSTR
lpFmt
,
...);
#define wnsprintf WINELIB_NAME_AW(wnsprintf)
struct
_STRRET
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment