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
b2ef9218
Commit
b2ef9218
authored
Oct 11, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Register interfaces.
parent
445b9340
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
81 additions
and
4 deletions
+81
-4
Makefile.in
dlls/mscoree/Makefile.in
+2
-0
mscoree_classes.idl
dlls/mscoree/mscoree_classes.idl
+72
-0
mscoree_main.c
dlls/mscoree/mscoree_main.c
+7
-4
No files found.
dlls/mscoree/Makefile.in
View file @
b2ef9218
...
...
@@ -10,4 +10,6 @@ C_SRCS = \
metahost.c
\
mscoree_main.c
IDL_R_SRCS
=
mscoree_classes.idl
@MAKE_DLL_RULES@
dlls/mscoree/mscoree_classes.idl
0 → 100644
View file @
b2ef9218
/*
*
Copyright
2011
Alistair
Leslie
-
Hughes
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
[
helpstring
(
"Microsoft Common Language Runtime Host V2"
),
threading
(
both
),
progid
(
"CLRMetaData.CLRRuntimeHost.1"
),
vi_progid
(
"CLRMetaData.CLRRuntimeHost"
),
uuid
(
90
F1A06E
-
7712
-
4762
-
86B5
-
7
A5EBA6BDB01
),
]
coclass
ICLRRuntimeHost
{
}
[
helpstring
(
"Microsoft Common Language Runtime Host V2"
),
threading
(
both
),
progid
(
"CLRMetaData.CLRRuntimeHost.2"
),
vi_progid
(
"CLRMetaData.CLRRuntimeHost"
),
uuid
(
90
F1A06E
-
7712
-
4762
-
86B5
-
7
A5EBA6BDB02
),
]
coclass
CLRRuntimeHost
{
}
[
helpstring
(
"Microsoft Common Language Runtime Meta Data"
),
threading
(
both
),
progid
(
"CLRMetaData.CorMetaDataDispenser.2"
),
vi_progid
(
"CLRMetaData.CorMetaDataDispenser"
),
uuid
(
E5CB7A31
-
7512
-
11
D2
-
89
CE
-
0080
C792E5D8
),
]
coclass
CorMetaDataDispenser
{
}
[
helpstring
(
"Microsoft Common Language Runtime Meta Data"
),
threading
(
both
),
progid
(
"CLRMetaData.CorMetaDataDispenserRuntime.2"
),
vi_progid
(
"CLRMetaData.CorMetaDataDispenserRuntime"
),
uuid
(
1
EC2DE53
-
75
CC
-
11
d2
-
9775
-
00
A0C9B4D50C
),
]
coclass
CorMetaDataDispenserRuntime
{
}
[
helpstring
(
"Microsoft Common Language Runtime Host"
),
threading
(
both
),
progid
(
"CLRMetaData.CorRuntimeHost.2"
),
vi_progid
(
"CLRMetaData.CorRuntimeHost"
),
uuid
(
CB2F6723
-
AB3A
-
11
d2
-
9
C40
-
00
C04FA30A3E
),
]
coclass
CorRuntimeHost
{
}
dlls/mscoree/mscoree_main.c
View file @
b2ef9218
...
...
@@ -44,11 +44,14 @@
#include "fusion.h"
#include "wine/list.h"
#include "mscoree_private.h"
#include "rpcproxy.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mscoree
);
static
HINSTANCE
MSCOREE_hInstance
;
char
*
WtoA
(
LPCWSTR
wstr
)
{
int
length
;
...
...
@@ -116,6 +119,8 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
TRACE
(
"(%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
MSCOREE_hInstance
=
hinstDLL
;
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
...
...
@@ -508,14 +513,12 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"
\n
"
);
return
S_OK
;
return
__wine_register_resources
(
MSCOREE_hInstance
);
}
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXME
(
"
\n
"
);
return
S_OK
;
return
__wine_unregister_resources
(
MSCOREE_hInstance
);
}
HRESULT
WINAPI
DllCanUnloadNow
(
VOID
)
...
...
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