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
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
Yoann Laissus
wine
Commits
e4b41afa
Commit
e4b41afa
authored
26 years ago
by
Juergen Schmied
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stub for PathQualify32[A|W].
parent
1c24d79b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/shell32/shellpath.c
+18
-0
18 additions, 0 deletions
dlls/shell32/shellpath.c
include/shell.h
+5
-0
5 additions, 0 deletions
include/shell.h
relay32/shell32.spec
+1
-1
1 addition, 1 deletion
relay32/shell32.spec
with
24 additions
and
1 deletion
dlls/shell32/shellpath.c
+
18
−
0
View file @
e4b41afa
...
...
@@ -516,6 +516,24 @@ BOOL32 WINAPI PathSetDlgItemPath32AW(HWND32 hDlg, int id, LPCVOID pszPath)
return
PathSetDlgItemPath32A
(
hDlg
,
id
,
pszPath
);
}
/*************************************************************************
* PathQualify32AW [SHELL32.49]
*/
BOOL32
WINAPI
PathQualify32A
(
LPCSTR
pszPath
)
{
TRACE
(
shell
,
"%s
\n
"
,
pszPath
);
return
0
;
}
BOOL32
WINAPI
PathQualify32W
(
LPCWSTR
pszPath
)
{
TRACE
(
shell
,
"%s
\n
"
,
debugstr_w
(
pszPath
));
return
0
;
}
BOOL32
WINAPI
PathQualify32AW
(
LPCVOID
pszPath
)
{
if
(
VERSION_OsIsUnicode
())
return
PathQualify32W
(
pszPath
);
return
PathQualify32A
(
pszPath
);
}
/*************************************************************************
* PathResolve [SHELL32.51]
*/
...
...
This diff is collapsed.
Click to expand it.
include/shell.h
+
5
−
0
View file @
e4b41afa
...
...
@@ -254,6 +254,11 @@ LPWSTR WINAPI PathAddBackslash32W(LPWSTR path);
#define PathAddBackslash WINELIB_NAME_AW(PathAddBackslash)
LPVOID
WINAPI
PathAddBackslash32AW
(
LPVOID
path
);
BOOL32
WINAPI
PathQualify32A
(
LPCSTR
path
);
BOOL32
WINAPI
PathQualify32W
(
LPCWSTR
path
);
#define PathQualify WINELIB_NAME_AW(PathQualify)
BOOL32
WINAPI
PathQualify32AW
(
LPCVOID
path
);
LPSTR
WINAPI
PathQuoteSpaces32A
(
LPCSTR
path
);
LPWSTR
WINAPI
PathQuoteSpaces32W
(
LPCWSTR
path
);
#define PathQuoteSpaces WINELIB_NAME_AW(PathQuoteSpaces)
...
...
This diff is collapsed.
Click to expand it.
relay32/shell32.spec
+
1
−
1
View file @
e4b41afa
...
...
@@ -54,7 +54,7 @@ init Shell32LibMain
46 stdcall PathMatchSpec (str str) PathMatchSpec32AW
47 stub PathMakeUniqueName@20
48 stdcall PathSetDlgItemPath (long long ptr) PathSetDlgItemPath32AW
49 st
ub
PathQualify
@4
49 st
dcall PathQualify (ptr)
PathQualify
32AW
50 stub PathStripToRoot@4
51 stdcall PathResolve(str long long) PathResolve
52 stdcall PathGetArgs(str) PathGetArgs32AW
...
...
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