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
cc7c1c0b
Commit
cc7c1c0b
authored
Mar 21, 2002
by
Michael Cardenas
Committed by
Alexandre Julliard
Mar 21, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some stubs.
parent
7dbce65b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
3 deletions
+37
-3
urlmon.spec
dlls/urlmon/urlmon.spec
+2
-2
urlmon_main.c
dlls/urlmon/urlmon_main.c
+35
-1
No files found.
dlls/urlmon/urlmon.spec
View file @
cc7c1c0b
...
...
@@ -19,7 +19,7 @@ debug_channels (urlmon win32)
@ stub CoInternetCreateZoneManager
@ stub CoInternetGetProtocolFlags
@ stub CoInternetGetSecurityUrl
@ st
ub
CoInternetGetSession
@ st
dcall CoInternetGetSession(long ptr long)
CoInternetGetSession
@ stub CoInternetParseUrl
@ stub CoInternetQueryInfo
@ stub CopyBindInfo
...
...
@@ -55,7 +55,7 @@ debug_channels (urlmon win32)
@ stub IsLoggingEnabledW
@ stub IsValidURL
@ stub MkParseDisplayNameEx
@ st
ub
ObtainUserAgentString
@ st
dcall ObtainUserAgentString(long str ptr)
ObtainUserAgentString
@ stub PrivateCoInstall
@ stdcall RegisterBindStatusCallback(ptr ptr ptr long) RegisterBindStatusCallback
@ stub RegisterFormatEnumerator
...
...
dlls/urlmon/urlmon_main.c
View file @
cc7c1c0b
...
...
@@ -99,5 +99,39 @@ HRESULT WINAPI URLMON_DllUnregisterServer(void)
return
S_OK
;
}
/**************************************************************************
* CoInternetGetSession (URLMON.@)
*/
HRESULT
WINAPI
CoInternetGetSession
(
DWORD
dwSessionMode
,
LPVOID
/* IInternetSession ** */
ppIInternetSession
,
DWORD
dwReserved
)
{
FIXME
(
"(%ld, %p, %ld): stub
\n
"
,
dwSessionMode
,
ppIInternetSession
,
dwReserved
);
if
(
dwSessionMode
)
{
ERR
(
"dwSessionMode: %ld, must be zero
\n
"
,
dwSessionMode
);
}
if
(
dwReserved
)
{
ERR
(
"dwReserved: %ld, must be zero
\n
"
,
dwReserved
);
}
return
S_OK
;
}
/**************************************************************************
* ObtainUserAgentString (URLMON.@)
*/
HRESULT
WINAPI
ObtainUserAgentString
(
DWORD
dwOption
,
LPCSTR
pcszUAOut
,
DWORD
*
cbSize
)
{
FIXME
(
"(%ld, %p, %p): stub
\n
"
,
dwOption
,
pcszUAOut
,
cbSize
);
if
(
dwOption
)
{
ERR
(
"dwOption: %ld, must be zero
\n
"
,
dwOption
);
}
return
S_OK
;
}
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