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
57cb25c0
Commit
57cb25c0
authored
Sep 29, 2004
by
Huw Davies
Committed by
Alexandre Julliard
Sep 29, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ParseURL is now documented, so move it into shlwapi.h.
parent
7d6f360f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
url.c
dlls/shlwapi/url.c
+0
-0
shlwapi.h
include/shlwapi.h
+22
-0
No files found.
dlls/shlwapi/url.c
View file @
57cb25c0
This diff is collapsed.
Click to expand it.
include/shlwapi.h
View file @
57cb25c0
...
...
@@ -668,6 +668,28 @@ HRESULT WINAPI UrlCreateFromPathA(LPCSTR,LPSTR,LPDWORD,DWORD);
HRESULT
WINAPI
UrlCreateFromPathW
(
LPCWSTR
,
LPWSTR
,
LPDWORD
,
DWORD
);
#define UrlCreateFromPath WINELIB_AW_NAME(UrlCreateFromPath)
typedef
struct
tagPARSEDURLA
{
DWORD
cbSize
;
LPCSTR
pszProtocol
;
UINT
cchProtocol
;
LPCSTR
pszSuffix
;
UINT
cchSuffix
;
UINT
nScheme
;
}
PARSEDURLA
,
*
PPARSEDURLA
;
typedef
struct
tagPARSEDURLW
{
DWORD
cbSize
;
LPCWSTR
pszProtocol
;
UINT
cchProtocol
;
LPCWSTR
pszSuffix
;
UINT
cchSuffix
;
UINT
nScheme
;
}
PARSEDURLW
,
*
PPARSEDURLW
;
HRESULT
WINAPI
ParseURLA
(
LPCSTR
pszUrl
,
PARSEDURLA
*
ppu
);
HRESULT
WINAPI
ParseURLW
(
LPCWSTR
pszUrl
,
PARSEDURLW
*
ppu
);
#define ParseURL WINELIB_AW_NAME(ParseUrl)
#endif
/* NO_SHLWAPI_PATH */
...
...
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