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
58c77f61
Commit
58c77f61
authored
Oct 01, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Implement PathCreateFromUrlAlloc().
parent
49d8b4c0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
4 deletions
+41
-4
path.c
dlls/shlwapi/path.c
+20
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-0
path.c
dlls/shlwapi/tests/path.c
+14
-0
shlwapi.h
include/shlwapi.h
+6
-4
No files found.
dlls/shlwapi/path.c
View file @
58c77f61
...
...
@@ -3420,6 +3420,26 @@ HRESULT WINAPI PathCreateFromUrlW(LPCWSTR pszUrl, LPWSTR pszPath,
}
/*************************************************************************
* PathCreateFromUrlAlloc [SHLWAPI.@]
*/
HRESULT
WINAPI
PathCreateFromUrlAlloc
(
LPCWSTR
pszUrl
,
LPWSTR
*
pszPath
,
DWORD
dwReserved
)
{
WCHAR
pathW
[
MAX_PATH
];
DWORD
size
;
HRESULT
hr
;
size
=
MAX_PATH
;
hr
=
PathCreateFromUrlW
(
pszUrl
,
pathW
,
&
size
,
dwReserved
);
if
(
SUCCEEDED
(
hr
))
{
/* Yes, this is supposed to crash if pszPath is NULL */
*
pszPath
=
StrDupW
(
pathW
);
}
return
hr
;
}
/*************************************************************************
* PathRelativePathToA [SHLWAPI.@]
*
* Create a relative path from one path to another.
...
...
dlls/shlwapi/shlwapi.spec
View file @
58c77f61
...
...
@@ -586,6 +586,7 @@
@ stdcall PathCompactPathW(long wstr long)
@ stdcall PathCreateFromUrlA(str ptr ptr long)
@ stdcall PathCreateFromUrlW(wstr ptr ptr long)
@ stdcall PathCreateFromUrlAlloc(wstr ptr long)
@ stdcall PathFileExistsA (str)
@ stdcall PathFileExistsW (wstr)
@ stdcall PathFindExtensionA (str)
...
...
dlls/shlwapi/tests/path.c
View file @
58c77f61
...
...
@@ -32,6 +32,7 @@ static HRESULT (WINAPI *pPathIsValidCharW)(WCHAR,DWORD);
static
LPWSTR
(
WINAPI
*
pPathCombineW
)(
LPWSTR
,
LPCWSTR
,
LPCWSTR
);
static
HRESULT
(
WINAPI
*
pPathCreateFromUrlA
)(
LPCSTR
,
LPSTR
,
LPDWORD
,
DWORD
);
static
HRESULT
(
WINAPI
*
pPathCreateFromUrlW
)(
LPCWSTR
,
LPWSTR
,
LPDWORD
,
DWORD
);
static
HRESULT
(
WINAPI
*
pPathCreateFromUrlAlloc
)(
LPCWSTR
,
LPWSTR
*
,
DWORD
);
static
BOOL
(
WINAPI
*
pPathAppendA
)(
LPSTR
,
LPCSTR
);
/* ################ */
...
...
@@ -326,6 +327,18 @@ static void test_PathCreateFromUrl(void)
FreeWideString
(
pathW
);
}
}
if
(
pPathCreateFromUrlAlloc
)
{
static
const
WCHAR
fileW
[]
=
{
'f'
,
'i'
,
'l'
,
'e'
,
':'
,
'/'
,
'/'
,
'f'
,
'o'
,
'o'
,
0
};
static
const
WCHAR
fooW
[]
=
{
'\\'
,
'\\'
,
'f'
,
'o'
,
'o'
,
0
};
pathW
=
NULL
;
ret
=
pPathCreateFromUrlAlloc
(
fileW
,
&
pathW
,
0
);
ok
(
ret
==
S_OK
,
"got 0x%08x expected S_OK
\n
"
,
ret
);
ok
(
lstrcmpiW
(
pathW
,
fooW
)
==
0
,
"got %s expected %s
\n
"
,
wine_dbgstr_w
(
pathW
),
wine_dbgstr_w
(
fooW
));
HeapFree
(
GetProcessHeap
(),
0
,
pathW
);
}
}
...
...
@@ -1453,6 +1466,7 @@ START_TEST(path)
pPathCreateFromUrlA
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
"PathCreateFromUrlA"
);
pPathCreateFromUrlW
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
"PathCreateFromUrlW"
);
pPathCreateFromUrlAlloc
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
"PathCreateFromUrlAlloc"
);
pPathCombineW
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
"PathCombineW"
);
pPathIsValidCharA
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
(
LPSTR
)
455
);
pPathIsValidCharW
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
(
LPSTR
)
456
);
...
...
include/shlwapi.h
View file @
58c77f61
...
...
@@ -372,16 +372,18 @@ int WINAPI PathCommonPrefixA(LPCSTR,LPCSTR,LPSTR);
int
WINAPI
PathCommonPrefixW
(
LPCWSTR
,
LPCWSTR
,
LPWSTR
);
#define PathCommonPrefix WINELIB_NAME_AW(PathCommonPrefix)
HRESULT
WINAPI
PathCreateFromUrlA
(
LPCSTR
pszUrl
,
LPSTR
pszPath
,
LPDWORD
pcchPath
,
DWORD
dwReserved
);
HRESULT
WINAPI
PathCreateFromUrlW
(
LPCWSTR
pszUrl
,
LPWSTR
pszPath
,
LPDWORD
pcchPath
,
DWORD
dwReserved
);
HRESULT
WINAPI
PathCreateFromUrlA
(
LPCSTR
,
LPSTR
,
LPDWORD
,
DWORD
);
HRESULT
WINAPI
PathCreateFromUrlW
(
LPCWSTR
,
LPWSTR
,
LPDWORD
,
DWORD
);
#define PathCreateFromUrl WINELIB_NAME_AW(PathCreateFromUrl)
HRESULT
WINAPI
PathCreateFromUrlAlloc
(
LPCWSTR
,
LPWSTR
*
,
DWORD
);
BOOL
WINAPI
PathFileExistsA
(
LPCSTR
);
BOOL
WINAPI
PathFileExistsW
(
LPCWSTR
);
#define PathFileExists WINELIB_NAME_AW(PathFileExists)
BOOL
WINAPI
PathFileExistsAndAttributesA
(
LPCSTR
lpszPath
,
DWORD
*
dwAttr
);
BOOL
WINAPI
PathFileExistsAndAttributesW
(
LPCWSTR
lpszPath
,
DWORD
*
dwAttr
);
BOOL
WINAPI
PathFileExistsAndAttributesA
(
LPCSTR
,
DWORD
*
);
BOOL
WINAPI
PathFileExistsAndAttributesW
(
LPCWSTR
,
DWORD
*
);
#define PathFileExistsAndAttributes WINELIB_NAME_AW(PathFileExistsAndAttributes)
LPSTR
WINAPI
PathFindExtensionA
(
LPCSTR
);
...
...
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