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
3d8bf3b0
Commit
3d8bf3b0
authored
May 13, 2003
by
Andreas Mohr
Committed by
Alexandre Julliard
May 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some stubs needed for Win98 explorer.exe.
parent
6dae7c2d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
3 deletions
+40
-3
shdocvw.spec
dlls/shdocvw/shdocvw.spec
+3
-3
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+37
-0
No files found.
dlls/shdocvw/shdocvw.spec
View file @
3d8bf3b0
...
...
@@ -7,18 +7,18 @@
106 stub HlinkFindFrame
107 stub SetShellOfflineState
108 stub AddUrlToFavorites
110 st
ub @
110 st
dcall SHDOCVW_110() SHDOCVW_110
111 stub @
115 stub @
116 stub @
117 stub IEAboutBox
118 st
ub @
118 st
dcall SHDOCVW_118(long) SHDOCVW_118
119 stub @
120 stub @
121 stub @
122 stub @
123 stub @
125 st
ub @
125 st
dcall SHDOCVW_125() SHDOCVW_125
130 stub @
131 stub @
135 stub @
...
...
dlls/shdocvw/shdocvw_main.c
View file @
3d8bf3b0
...
...
@@ -95,3 +95,40 @@ HRESULT WINAPI SHDOCVW_DllUnregisterServer()
FIXME
(
"(), stub!
\n
"
);
return
S_OK
;
}
/***********************************************************************
* SHDOCVW_110 (SHDOCVW.110)
*
* Called by Win98 explorer.exe main binary, definitely has 0
* parameters.
*/
DWORD
WINAPI
SHDOCVW_110
(
void
)
{
FIXME
(
"(), stub!
\n
"
);
return
0x0deadfeed
;
}
/***********************************************************************
* SHDOCVW_118 (SHDOCVW.118)
*
* Called by Win98 explorer.exe main binary, definitely has only one
* parameter.
*/
DWORD
WINAPI
SHDOCVW_118
(
DWORD
dw1
)
{
FIXME
(
"(%08lx), stub!
\n
"
,
dw1
);
return
0xcafedead
;
}
/***********************************************************************
* SHDOCVW_125 (SHDOCVW.125)
*
* Called by Win98 explorer.exe main binary, definitely has 0
* parameters.
*/
DWORD
WINAPI
SHDOCVW_125
(
void
)
{
FIXME
(
"(), stub!
\n
"
);
return
0x0deadbee
;
}
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