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
1e00ad24
Commit
1e00ad24
authored
Jul 16, 2004
by
Stefan Leichter
Committed by
Alexandre Julliard
Jul 16, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for DllInstall and DllRegisterServer.
parent
6a9cc38d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
main.c
dlls/mshtml/main.c
+18
-0
mshtml.spec
dlls/mshtml/mshtml.spec
+2
-2
No files found.
dlls/mshtml/main.c
View file @
1e00ad24
...
...
@@ -160,3 +160,21 @@ INT WINAPI RunHTMLApplication( HINSTANCE hinst, HINSTANCE hPrevInst,
FIXME
(
"%p %p %s %d
\n
"
,
hinst
,
hPrevInst
,
debugstr_a
(
szCmdLine
),
nCmdShow
);
return
0
;
}
/***********************************************************************
* DllInstall (MSHTML.@)
*/
HRESULT
WINAPI
MSHTML_DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
FIXME
(
"stub %d %s: returning S_OK
\n
"
,
bInstall
,
debugstr_w
(
cmdline
));
return
S_OK
;
}
/***********************************************************************
* DllRegisterServer (MSHTML.@)
*/
HRESULT
WINAPI
MSHTML_DllRegisterServer
(
void
)
{
FIXME
(
"stub: returning S_OK
\n
"
);
return
S_OK
;
}
dlls/mshtml/mshtml.spec
View file @
1e00ad24
...
...
@@ -2,8 +2,8 @@
@ stdcall -private DllCanUnloadNow() MSHTML_DllCanUnloadNow
@ stub DllEnumClassObjects
@ stdcall -private DllGetClassObject(ptr ptr ptr) MSHTML_DllGetClassObject
@ st
ub
DllInstall
@ st
ub
DllRegisterServer
@ st
dcall DllInstall(long wstr) MSHTML_
DllInstall
@ st
dcall -private DllRegisterServer() MSHTML_
DllRegisterServer
@ stub DllUnregisterServer
@ stub MatchExactGetIDsOfNames
@ stub PrintHTML
...
...
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