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
4205880f
Commit
4205880f
authored
Mar 27, 2004
by
Ulrich Czekalla
Committed by
Alexandre Julliard
Mar 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement FixSlashesAndColonW and add stub for SHGetAppCompatFlags.
parent
fac49cba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
2 deletions
+27
-2
ordinal.c
dlls/shlwapi/ordinal.c
+25
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+2
-2
No files found.
dlls/shlwapi/ordinal.c
View file @
4205880f
...
...
@@ -3837,6 +3837,31 @@ DWORD WINAPI SHMenuIndexFromID(HMENU hMenu, UINT uID)
return
GetMenuPosFromID
(
hMenu
,
uID
);
}
/*************************************************************************
* @ [SHLWAPI.448]
*/
VOID
WINAPI
FixSlashesAndColonW
(
LPWSTR
lpwstr
)
{
while
(
*
lpwstr
)
{
if
(
*
lpwstr
==
'/'
)
*
lpwstr
=
'\\'
;
lpwstr
++
;
}
}
/*************************************************************************
* @ [SHLWAPI.461]
*/
DWORD
WINAPI
SHGetAppCompatFlags
()
{
FIXME
(
"stub
\n
"
);
return
0
;
}
/*************************************************************************
* @ [SHLWAPI.549]
*/
...
...
dlls/shlwapi/shlwapi.spec
View file @
4205880f
...
...
@@ -445,7 +445,7 @@
445 stdcall -noname PathFileExistsAndAttributesA(str ptr)
446 stdcall -noname PathFileExistsAndAttributesW(wstr ptr)
447 stub -noname FixSlashesAndColonA
448 st
ub -noname FixSlashesAndColonW
448 st
dcall -noname FixSlashesAndColonW(wstr)
449 stub -noname NextPathA
450 stub -noname NextPathW
451 stub -noname CharUpperNoDBCSA
...
...
@@ -458,7 +458,7 @@
458 stub -noname GetLongPathNameWrapA
459 stub -noname SHExpandEnvironmentStringsA
460 stub -noname SHExpandEnvironmentStringsW
461 st
ub -noname SHGetAppCompatFlags
461 st
dcall -noname SHGetAppCompatFlags()
462 stub -noname UrlFixupW
463 stub -noname SHExpandEnvironmentStringsForUserA
464 stub -noname SHExpandEnvironmentStringsForUserW
...
...
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