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
7c527199
Commit
7c527199
authored
Sep 19, 2011
by
Austin English
Committed by
Alexandre Julliard
Sep 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Add a stub for RegisterMediaTypes().
parent
514b006d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
urlmon.spec
dlls/urlmon/urlmon.spec
+1
-1
urlmon_main.c
dlls/urlmon/urlmon_main.c
+10
-0
No files found.
dlls/urlmon/urlmon.spec
View file @
7c527199
...
...
@@ -72,7 +72,7 @@
@ stdcall RegisterBindStatusCallback(ptr ptr ptr long)
@ stdcall RegisterFormatEnumerator(ptr ptr long)
@ stub RegisterMediaTypeClass
@ st
ub RegisterMediaTypes
@ st
dcall RegisterMediaTypes(long ptr ptr)
@ stdcall ReleaseBindInfo(ptr)
@ stdcall RevokeBindStatusCallback(ptr ptr)
@ stdcall RevokeFormatEnumerator(ptr ptr)
...
...
dlls/urlmon/urlmon_main.c
View file @
7c527199
...
...
@@ -935,3 +935,13 @@ BOOL WINAPI URLMON_423(DWORD unknown1, DWORD unknown2, DWORD unknown3, DWORD unk
FIXME
(
"stub: %d %d %d %d
\n
"
,
unknown1
,
unknown2
,
unknown3
,
unknown4
);
return
FALSE
;
}
/***********************************************************************
* RegisterMediaTypes
* Added in IE3, registers known MIME-type strings.
*/
HRESULT
WINAPI
RegisterMediaTypes
(
UINT
types
,
LPCSTR
*
szTypes
,
CLIPFORMAT
*
cfTypes
)
{
FIXME
(
"stub: %u %p %p
\n
"
,
types
,
szTypes
,
cfTypes
);
return
E_INVALIDARG
;
}
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