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
Michael Bond
wine
Commits
c90aa7b6
Commit
c90aa7b6
authored
23 years ago
by
Jon Griffiths
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update shell xxxAW wrapper prototypes for fixed SHLWAPI functions.
parent
4e75d124
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/shell32/shellpath.c
+2
-2
2 additions, 2 deletions
dlls/shell32/shellpath.c
dlls/shell32/undocshell.h
+2
-2
2 additions, 2 deletions
dlls/shell32/undocshell.h
with
4 additions
and
4 deletions
dlls/shell32/shellpath.c
+
2
−
2
View file @
c90aa7b6
...
...
@@ -263,7 +263,7 @@ void WINAPI PathRemoveBlanksAW(LPVOID str)
/*************************************************************************
* PathQuoteSpaces [SHELL32.55]
*/
LP
VOID
WINAPI
PathQuoteSpacesAW
(
LPVOID
lpszPath
)
VOID
WINAPI
PathQuoteSpacesAW
(
LPVOID
lpszPath
)
{
if
(
SHELL_OsIsUnicode
())
return
PathQuoteSpacesW
(
lpszPath
);
...
...
@@ -634,7 +634,7 @@ HRESULT WINAPI PathProcessCommandAW (
/*************************************************************************
* PathSetDlgItemPath (SHELL32.48)
*/
BOOL
WINAPI
PathSetDlgItemPathAW
(
HWND
hDlg
,
int
id
,
LPCVOID
pszPath
)
VOID
WINAPI
PathSetDlgItemPathAW
(
HWND
hDlg
,
int
id
,
LPCVOID
pszPath
)
{
if
(
SHELL_OsIsUnicode
())
return
PathSetDlgItemPathW
(
hDlg
,
id
,
pszPath
);
return
PathSetDlgItemPathA
(
hDlg
,
id
,
pszPath
);
...
...
This diff is collapsed.
Click to expand it.
dlls/shell32/undocshell.h
+
2
−
2
View file @
c90aa7b6
...
...
@@ -571,7 +571,7 @@ LPVOID WINAPI PathGetShortPathAW(LPVOID lpszPath);
void
WINAPI
PathRemoveBlanksAW
(
LPVOID
lpszPath
);
LP
VOID
WINAPI
PathQuoteSpacesAW
(
LPVOID
path
);
VOID
WINAPI
PathQuoteSpacesAW
(
LPVOID
path
);
void
WINAPI
PathUnquoteSpacesAW
(
LPVOID
lpszPath
);
...
...
@@ -624,7 +624,7 @@ BOOL WINAPI PathQualifyAW(LPCVOID path);
BOOL
WINAPI
PathResolveAW
(
LPVOID
lpszPath
,
LPCVOID
*
alpszPaths
,
DWORD
dwFlags
);
BOOL
WINAPI
PathSetDlgItemPathAW
(
HWND
hDlg
,
int
nIDDlgItem
,
LPCVOID
lpszPath
);
VOID
WINAPI
PathSetDlgItemPathAW
(
HWND
hDlg
,
int
nIDDlgItem
,
LPCVOID
lpszPath
);
/* PathProcessCommand flags */
#define PPCF_QUOTEPATH 0x01
/* implies PPCF_INCLUDEARGS */
...
...
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