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
2e27f8c9
Commit
2e27f8c9
authored
Jan 02, 2003
by
Dominik Strasser
Committed by
Alexandre Julliard
Jan 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some stubs for dll setup needed by IE6 setup.
parent
1c421d77
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
74 additions
and
9 deletions
+74
-9
devenum.spec
dlls/devenum/devenum.spec
+1
-1
devenum_main.c
dlls/devenum/devenum_main.c
+12
-1
qcap.spec
dlls/qcap/qcap.spec
+2
-2
qcap_main.c
dlls/qcap/qcap_main.c
+23
-1
main.c
dlls/quartz/main.c
+33
-1
quartz.spec
dlls/quartz/quartz.spec
+3
-3
No files found.
dlls/devenum/devenum.spec
View file @
2e27f8c9
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ st
ub
DllRegisterServer
@ st
dcall DllRegisterServer() DEVENUM_
DllRegisterServer
@ stub DllUnregisterServer
dlls/devenum/devenum_main.c
View file @
2e27f8c9
/* nothing here yet */
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
devenum
);
/***********************************************************************
* DllRegisterServer (DEVENUM.@)
*/
HRESULT
WINAPI
DEVENUM_DllRegisterServer
()
{
FIXME
(
"(): stub
\n
"
);
return
0
;
}
dlls/qcap/qcap.spec
View file @
2e27f8c9
@ stub DllCanUnloadNow
@ st
ub
DllGetClassObject
@ st
ub
DllRegisterServer
@ st
dcall DllGetClassObject(ptr ptr ptr) QCAP_
DllGetClassObject
@ st
dcall DllRegisterServer() QCAP_
DllRegisterServer
@ stub DllUnregisterServer
dlls/qcap/qcap_main.c
View file @
2e27f8c9
/* nothing here yet */
#include "wine/debug.h"
#include "winerror.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
qcap
);
/***********************************************************************
* DllRegisterServer (QCAP.@)
*/
HRESULT
WINAPI
QCAP_DllRegisterServer
()
{
FIXME
(
"(): stub
\n
"
);
return
0
;
}
/***********************************************************************
* DllGetClassObject (QCAP.@)
*/
HRESULT
WINAPI
QCAP_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
{
FIXME
(
"
\n\t
CLSID:
\t
%s,
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
));
return
CLASS_E_CLASSNOTAVAILABLE
;
}
dlls/quartz/main.c
View file @
2e27f8c9
/* all codes are removed by author */
#include "wine/debug.h"
#include "winerror.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
quartz
);
DWORD
dll_ref
=
0
;
/***********************************************************************
* DllRegisterServer (QUARTZ.@)
*/
HRESULT
WINAPI
QUARTZ_DllRegisterServer
()
{
FIXME
(
"(): stub
\n
"
);
return
0
;
}
/***********************************************************************
* DllGetClassObject (QUARTZ.@)
*/
HRESULT
WINAPI
QUARTZ_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
{
FIXME
(
"
\n\t
CLSID:
\t
%s,
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
));
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/***********************************************************************
* DllCanUnloadNow (QUARTZ.@)
*/
HRESULT
WINAPI
QUARTZ_DllCanUnloadNow
()
{
return
dll_ref
!=
0
?
S_FALSE
:
S_OK
;
}
dlls/quartz/quartz.spec
View file @
2e27f8c9
...
...
@@ -2,7 +2,7 @@
@ stub AMGetErrorTextW
@ stub AmpFactorToDB
@ stub DBToAmpFactor
@ st
ub
DllCanUnloadNow
@ st
ub
DllGetClassObject
@ st
ub
DllRegisterServer
@ st
dcall DllCanUnloadNow() QUARTZ_
DllCanUnloadNow
@ st
dcall DllGetClassObject(ptr ptr ptr) QUARTZ_
DllGetClassObject
@ st
dcall DllRegisterServer() QUARTZ_
DllRegisterServer
@ stub DllUnregisterServer
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