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
dc8467fe
Commit
dc8467fe
authored
Dec 15, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added stub for 444 and 445 function.
parent
b779ae48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
10 deletions
+31
-10
urlmon.spec
dlls/urlmon/urlmon.spec
+4
-2
urlmon_main.c
dlls/urlmon/urlmon_main.c
+27
-8
No files found.
dlls/urlmon/urlmon.spec
View file @
dc8467fe
...
...
@@ -101,5 +101,7 @@
335 stdcall @(ptr long ptr) propsys.InitVariantFromBuffer
350 stdcall @(ptr ptr) propsys.PropVariantToGUID
362 stdcall @(ptr ptr) propsys.InitVariantFromGUIDAsString
410 stdcall @(long long) URLMON_410
423 stdcall @(long long long long) URLMON_423
410 stdcall @(long long) LogSqmBits
423 stdcall @(long long long long) LogSqmUXCommandOffsetInternal
444 stdcall @(long long long) MapUriToBrowserEmulationState
445 stdcall @(long long) MapBrowserEmulationModeToUserAgent
dlls/urlmon/urlmon_main.c
View file @
dc8467fe
...
...
@@ -921,23 +921,42 @@ BOOL WINAPI IsProtectedModeURL(const WCHAR *url)
}
/***********************************************************************
*
URLMON_410
(URLMON.410)
*
LogSqmBits
(URLMON.410)
* Undocumented, added in IE8
*/
BOOL
WINAPI
URLMON_410
(
DWORD
unknown1
,
DWORD
unknown
2
)
int
WINAPI
LogSqmBits
(
DWORD
unk1
,
DWORD
unk
2
)
{
FIXME
(
"stub: %d %d
\n
"
,
unk
nown1
,
unknown
2
);
return
FALSE
;
FIXME
(
"stub: %d %d
\n
"
,
unk
1
,
unk
2
);
return
0
;
}
/***********************************************************************
*
URLMON_423
(URLMON.423)
*
LogSqmUXCommandOffsetInternal
(URLMON.423)
* Undocumented, added in IE8
*/
BOOL
WINAPI
URLMON_423
(
DWORD
unknown1
,
DWORD
unknown2
,
DWORD
unknown3
,
DWORD
unknown
4
)
void
WINAPI
LogSqmUXCommandOffsetInternal
(
DWORD
unk1
,
DWORD
unk2
,
DWORD
unk3
,
DWORD
unk
4
)
{
FIXME
(
"stub: %d %d %d %d
\n
"
,
unknown1
,
unknown2
,
unknown3
,
unknown4
);
return
FALSE
;
FIXME
(
"stub: %d %d %d %d
\n
"
,
unk1
,
unk2
,
unk3
,
unk4
);
}
/***********************************************************************
* MapUriToBrowserEmulationState (URLMON.444)
* Undocumented, added in IE8
*/
int
WINAPI
MapUriToBrowserEmulationState
(
DWORD
unk1
,
DWORD
unk2
,
DWORD
unk3
)
{
FIXME
(
"stub: %d %d %d
\n
"
,
unk1
,
unk2
,
unk3
);
return
0
;
}
/***********************************************************************
* MapBrowserEmulationModeToUserAgent (URLMON.445)
* Undocumented, added in IE8
*/
int
WINAPI
MapBrowserEmulationModeToUserAgent
(
DWORD
unk1
,
DWORD
unk2
)
{
FIXME
(
"stub: %d %d
\n
"
,
unk1
,
unk2
);
return
0
;
}
/***********************************************************************
...
...
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