Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
cc7c1c0b
Commit
cc7c1c0b
authored
23 years ago
by
Michael Cardenas
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added some stubs.
parent
7dbce65b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/urlmon/urlmon.spec
+2
-2
2 additions, 2 deletions
dlls/urlmon/urlmon.spec
dlls/urlmon/urlmon_main.c
+35
-1
35 additions, 1 deletion
dlls/urlmon/urlmon_main.c
with
37 additions
and
3 deletions
dlls/urlmon/urlmon.spec
+
2
−
2
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
...
...
This diff is collapsed.
Click to expand it.
dlls/urlmon/urlmon_main.c
+
35
−
1
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment