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
80a66960
Commit
80a66960
authored
Apr 11, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub for FaultInIEFeature.
parent
9f1030c2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
urlmon.spec
dlls/urlmon/urlmon.spec
+1
-1
urlmon_main.c
dlls/urlmon/urlmon_main.c
+12
-0
No files found.
dlls/urlmon/urlmon.spec
View file @
80a66960
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
@ stdcall -private DllRegisterServerEx() URLMON_DllRegisterServerEx
@ stdcall -private DllRegisterServerEx() URLMON_DllRegisterServerEx
@ stdcall -private DllUnregisterServer() URLMON_DllUnregisterServer
@ stdcall -private DllUnregisterServer() URLMON_DllUnregisterServer
@ stdcall Extract(long ptr) cabinet.Extract
@ stdcall Extract(long ptr) cabinet.Extract
@ st
ub FaultInIEFeature
@ st
dcall FaultInIEFeature(long ptr ptr long)
@ stub FindMediaType
@ stub FindMediaType
@ stub FindMediaTypeClass
@ stub FindMediaTypeClass
@ stdcall FindMimeFromData(long ptr ptr long ptr long ptr long)
@ stdcall FindMimeFromData(long ptr ptr long ptr long ptr long)
...
...
dlls/urlmon/urlmon_main.c
View file @
80a66960
...
@@ -329,3 +329,15 @@ HRESULT WINAPI IsValidURL(LPBC pBC, LPCWSTR szURL, DWORD dwReserved)
...
@@ -329,3 +329,15 @@ HRESULT WINAPI IsValidURL(LPBC pBC, LPCWSTR szURL, DWORD dwReserved)
return
S_OK
;
return
S_OK
;
}
}
/**************************************************************************
* FaultInIEFeature (URLMON.@)
*
* Undocumented. Appears to be used by native shdocvw.dll.
*/
HRESULT
WINAPI
FaultInIEFeature
(
HWND
hwnd
,
uCLSSPEC
*
pClassSpec
,
QUERYCONTEXT
*
pQuery
,
DWORD
flags
)
{
FIXME
(
"%p %p %p %08lx
\n
"
,
hwnd
,
pClassSpec
,
pQuery
,
flags
);
return
E_NOTIMPL
;
}
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