Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
19337c7e
Commit
19337c7e
authored
Oct 08, 2001
by
Malte Starostik
Committed by
Alexandre Julliard
Oct 08, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CreateURLMoniker takes a LPCWSTR, not a LPWSTR.
parent
62fb0825
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
umon.c
dlls/urlmon/umon.c
+1
-1
urlmon.h
include/urlmon.h
+1
-1
No files found.
dlls/urlmon/umon.c
View file @
19337c7e
...
...
@@ -29,7 +29,7 @@ static WCHAR BSCBHolder[] = { '_','B','S','C','B','_','H','o','l','d','e','r','_
* MK_E_SYNTAX not a valid url
*
*/
HRESULT
WINAPI
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LPWSTR
szURL
,
IMoniker
**
ppmk
)
HRESULT
WINAPI
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LP
C
WSTR
szURL
,
IMoniker
**
ppmk
)
{
TRACE
(
"
\n
"
);
...
...
include/urlmon.h
View file @
19337c7e
...
...
@@ -273,7 +273,7 @@ ICOM_DEFINE(IWinInetHttpInfo,IWinInetInfo)
/*** IWinInetHttpInfo methods ***/
#define IWinInetHttpInfo_QueryInfo(p,a,b,c,d,e) ICOM_CALL5(QueryInfo,p,a,b,c,d,e)
HRESULT
WINAPI
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LPWSTR
szURL
,
IMoniker
**
ppmk
);
HRESULT
WINAPI
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LP
C
WSTR
szURL
,
IMoniker
**
ppmk
);
HRESULT
WINAPI
RegisterBindStatusCallback
(
IBindCtx
*
pbc
,
IBindStatusCallback
*
pbsc
,
IBindStatusCallback
**
ppbsc
,
DWORD
dwReserved
);
#ifdef __cplusplus
...
...
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