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
4598cde6
Commit
4598cde6
authored
May 05, 2005
by
Christian Costa
Committed by
Alexandre Julliard
May 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub implementation for CoGetClassObjectFromURL.
parent
833c9462
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
urlmon.spec
dlls/urlmon/urlmon.spec
+1
-1
urlmon_main.c
dlls/urlmon/urlmon_main.c
+14
-0
No files found.
dlls/urlmon/urlmon.spec
View file @
4598cde6
...
...
@@ -8,7 +8,7 @@
@ stub AsyncGetClassBits
@ stub AsyncInstallDistributionUnit
@ stub BindAsyncMoniker
@ st
ub CoGetClassObjectFromURL
@ st
dcall CoGetClassObjectFromURL(ptr wstr long long wstr ptr long ptr ptr ptr)
@ stub CoInstall
@ stdcall CoInternetCombineUrl(wstr wstr long wstr long ptr long)
@ stdcall CoInternetCompareUrl(wstr wstr long)
...
...
dlls/urlmon/urlmon_main.c
View file @
4598cde6
...
...
@@ -341,3 +341,17 @@ HRESULT WINAPI FaultInIEFeature( HWND hwnd, uCLSSPEC * pClassSpec,
FIXME
(
"%p %p %p %08lx
\n
"
,
hwnd
,
pClassSpec
,
pQuery
,
flags
);
return
E_NOTIMPL
;
}
/**************************************************************************
* CoGetClassObjectFromURL (URLMON.@)
*/
HRESULT
WINAPI
CoGetClassObjectFromURL
(
REFCLSID
rclsid
,
LPCWSTR
szCodeURL
,
DWORD
dwFileVersionMS
,
DWORD
dwFileVersionLS
,
LPCWSTR
szContentType
,
LPBINDCTX
pBindCtx
,
DWORD
dwClsContext
,
LPVOID
pvReserved
,
REFIID
riid
,
VOID
**
ppv
)
{
FIXME
(
"(%s %s %ld %ld %s %p %ld %p %s %p) Stub!
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_w
(
szCodeURL
),
dwFileVersionMS
,
dwFileVersionLS
,
debugstr_w
(
szContentType
),
pBindCtx
,
dwClsContext
,
pvReserved
,
debugstr_guid
(
riid
),
ppv
);
return
E_NOINTERFACE
;
}
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