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
e6ab6bdc
Commit
e6ab6bdc
authored
Jan 16, 2004
by
Martin Fuchs
Committed by
Alexandre Julliard
Jan 16, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected definition of PathYetAnotherMakeUniqueName().
parent
2ca8753e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
shell32.spec
dlls/shell32/shell32.spec
+1
-1
shellpath.c
dlls/shell32/shellpath.c
+7
-7
undocshell.h
dlls/shell32/undocshell.h
+5
-5
No files found.
dlls/shell32/shell32.spec
View file @
e6ab6bdc
...
...
@@ -68,7 +68,7 @@
72 stdcall Shell_GetCachedImageIndex(ptr ptr long) Shell_GetCachedImageIndexAW
73 stdcall SHShellFolderView_Message(long long long)
74 stdcall SHCreateStdEnumFmtEtc(long ptr ptr)
75 stdcall PathYetAnotherMakeUniqueName(ptr
ptr ptr ptr) PathYetAnotherMakeUniqueNameA
75 stdcall PathYetAnotherMakeUniqueName(ptr
wstr wstr wstr)
76 stub DragQueryInfo
77 stdcall SHMapPIDLToSystemImageListIndex(ptr ptr ptr)
78 stdcall OleStrToStrN(str long wstr long) OleStrToStrNAW
...
...
dlls/shell32/shellpath.c
View file @
e6ab6bdc
...
...
@@ -515,14 +515,14 @@ BOOL WINAPI PathMakeUniqueNameAW(
* NOTES
* exported by ordinal
*/
BOOL
WINAPI
PathYetAnotherMakeUniqueName
A
(
LPSTR
lpszBuffer
,
LPCSTR
lpszPathName
,
LPCSTR
lpszShortName
,
LPCSTR
lpszLongName
)
BOOL
WINAPI
PathYetAnotherMakeUniqueName
(
LP
W
STR
lpszBuffer
,
LPC
W
STR
lpszPathName
,
LPC
W
STR
lpszShortName
,
LPC
W
STR
lpszLongName
)
{
FIXME
(
"(%p,
%p, %p ,%p
):stub.
\n
"
,
lpszBuffer
,
lpszPathName
,
lpszShortName
,
lpszLongName
);
FIXME
(
"(%p,
%s, %s ,%s
):stub.
\n
"
,
lpszBuffer
,
debugstr_w
(
lpszPathName
),
debugstr_w
(
lpszShortName
),
debugstr_w
(
lpszLongName
)
);
return
TRUE
;
}
...
...
dlls/shell32/undocshell.h
View file @
e6ab6bdc
...
...
@@ -573,11 +573,11 @@ BOOL WINAPI PathMakeUniqueNameAW(
LPCVOID
lpszLongName
,
LPCVOID
lpszPathName
);
BOOL
WINAPI
PathYetAnotherMakeUniqueName
A
(
LPSTR
lpszBuffer
,
LPCSTR
lpszPathName
,
LPCSTR
lpszShortName
,
LPCSTR
lpszLongName
);
BOOL
WINAPI
PathYetAnotherMakeUniqueName
(
LP
W
STR
lpszBuffer
,
LPC
W
STR
lpszPathName
,
LPC
W
STR
lpszShortName
,
LPC
W
STR
lpszLongName
);
/* PathCleanupSpec return values */
#define PCS_REPLACEDCHARS 0x00000001
...
...
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