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
d4f107f5
Commit
d4f107f5
authored
Oct 11, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comcat: Moved dll registration to ole32.
parent
e5299ac7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
4 deletions
+31
-4
Makefile.in
dlls/comcat/Makefile.in
+1
-2
comcat_main.c
dlls/comcat/comcat_main.c
+15
-1
regsvr.c
dlls/comcat/regsvr.c
+0
-0
regsvr.c
dlls/ole32/regsvr.c
+15
-0
wine.inf.in
tools/wine.inf.in
+0
-1
No files found.
dlls/comcat/Makefile.in
View file @
d4f107f5
...
@@ -10,8 +10,7 @@ C_SRCS = \
...
@@ -10,8 +10,7 @@ C_SRCS = \
factory.c
\
factory.c
\
information.c
\
information.c
\
manager.c
\
manager.c
\
register.c
\
register.c
regsvr.c
RC_SRCS
=
\
RC_SRCS
=
\
version.rc
version.rc
...
...
dlls/comcat/comcat_main.c
View file @
d4f107f5
...
@@ -52,4 +52,18 @@ HRESULT WINAPI DllCanUnloadNow(void)
...
@@ -52,4 +52,18 @@ HRESULT WINAPI DllCanUnloadNow(void)
return
dll_ref
!=
0
?
S_FALSE
:
S_OK
;
return
dll_ref
!=
0
?
S_FALSE
:
S_OK
;
}
}
/* NOTE: DllRegisterServer and DllUnregisterServer are in regsvr.c */
/***********************************************************************
* DllRegisterServer (COMCAT.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
S_OK
;
}
/***********************************************************************
* DllUnregisterServer (COMCAT.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
S_OK
;
}
dlls/comcat/regsvr.c
deleted
100644 → 0
View file @
e5299ac7
This diff is collapsed.
Click to expand it.
dlls/ole32/regsvr.c
View file @
d4f107f5
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#include "ole2.h"
#include "ole2.h"
#include "olectl.h"
#include "olectl.h"
#include "comcat.h"
#include "initguid.h"
#include "initguid.h"
#include "compobj_private.h"
#include "compobj_private.h"
#include "moniker.h"
#include "moniker.h"
...
@@ -406,6 +407,9 @@ static GUID const CLSID_StdOleLink = {
...
@@ -406,6 +407,9 @@ static GUID const CLSID_StdOleLink = {
static
GUID
const
CLSID_PackagerMoniker
=
{
static
GUID
const
CLSID_PackagerMoniker
=
{
0x00000308
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
0x00000308
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
static
GUID
const
CLSID_PSFactoryBuffer_actxprxy
=
{
0xB8DA6310
,
0xE19B
,
0x11D0
,
{
0x93
,
0x3C
,
0x00
,
0xA0
,
0xC9
,
0x0D
,
0xCA
,
0xA9
}
};
extern
GUID
const
CLSID_Picture_Metafile
;
extern
GUID
const
CLSID_Picture_Metafile
;
extern
GUID
const
CLSID_Picture_Dib
;
extern
GUID
const
CLSID_Picture_Dib
;
...
@@ -492,6 +496,12 @@ static struct regsvr_coclass const coclass_list[] = {
...
@@ -492,6 +496,12 @@ static struct regsvr_coclass const coclass_list[] = {
"ole32.dll"
,
"ole32.dll"
,
"Apartment"
"Apartment"
},
},
{
&
CLSID_StdComponentCategoriesMgr
,
"Component Categories Manager"
,
NULL
,
"comcat.dll"
,
/* FIXME: should be in ole32.dll */
"Both"
},
{
NULL
}
/* list terminator */
{
NULL
}
/* list terminator */
};
};
...
@@ -502,6 +512,7 @@ static struct regsvr_coclass const coclass_list[] = {
...
@@ -502,6 +512,7 @@ static struct regsvr_coclass const coclass_list[] = {
#define INTERFACE_ENTRY(interface, base, clsid32, clsid16) { &IID_##interface, #interface, base, sizeof(interface##Vtbl)/sizeof(void*), clsid16, clsid32 }
#define INTERFACE_ENTRY(interface, base, clsid32, clsid16) { &IID_##interface, #interface, base, sizeof(interface##Vtbl)/sizeof(void*), clsid16, clsid32 }
#define BAS_INTERFACE_ENTRY(interface, base) INTERFACE_ENTRY(interface, &IID_##base, &CLSID_PSFactoryBuffer, NULL)
#define BAS_INTERFACE_ENTRY(interface, base) INTERFACE_ENTRY(interface, &IID_##base, &CLSID_PSFactoryBuffer, NULL)
#define STD_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, &CLSID_PSFactoryBuffer, NULL)
#define STD_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, &CLSID_PSFactoryBuffer, NULL)
#define ACTX_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, &CLSID_PSFactoryBuffer_actxprxy, NULL)
#define LCL_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, NULL, NULL)
#define LCL_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, NULL, NULL)
static
const
struct
regsvr_interface
interface_list
[]
=
{
static
const
struct
regsvr_interface
interface_list
[]
=
{
...
@@ -561,6 +572,10 @@ static const struct regsvr_interface interface_list[] = {
...
@@ -561,6 +572,10 @@ static const struct regsvr_interface interface_list[] = {
LCL_INTERFACE_ENTRY
(
IClientSecurity
),
LCL_INTERFACE_ENTRY
(
IClientSecurity
),
LCL_INTERFACE_ENTRY
(
IServerSecurity
),
LCL_INTERFACE_ENTRY
(
IServerSecurity
),
STD_INTERFACE_ENTRY
(
ISequentialStream
),
STD_INTERFACE_ENTRY
(
ISequentialStream
),
ACTX_INTERFACE_ENTRY
(
IEnumGUID
),
ACTX_INTERFACE_ENTRY
(
IEnumCATEGORYINFO
),
ACTX_INTERFACE_ENTRY
(
ICatRegister
),
ACTX_INTERFACE_ENTRY
(
ICatInformation
),
{
NULL
}
/* list terminator */
{
NULL
}
/* list terminator */
};
};
...
...
tools/wine.inf.in
View file @
d4f107f5
...
@@ -2179,7 +2179,6 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
...
@@ -2179,7 +2179,6 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
11,,atl.dll,1
11,,atl.dll,1
11,,avifil32.dll,1
11,,avifil32.dll,1
11,,browseui.dll,1
11,,browseui.dll,1
11,,comcat.dll,1
11,,comctl32.dll,2
11,,comctl32.dll,2
11,,cryptdlg.dll,1
11,,cryptdlg.dll,1
11,,cryptnet.dll,1
11,,cryptnet.dll,1
...
...
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