ReactOS
0.4.16-dev-927-g467dec4
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
main.c
Go to the documentation of this file.
1
/*
2
* MSXML6 entry point
3
*
4
* Copyright 2010 Nikolay Sivov for CodeWeavers
5
*
6
* This library is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU Lesser General Public
8
* License as published by the Free Software Foundation; either
9
* version 2.1 of the License, or (at your option) any later version.
10
*
11
* This library is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
* Lesser General Public License for more details.
15
*
16
* You should have received a copy of the GNU Lesser General Public
17
* License along with this library; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19
*/
20
21
#include <stdarg.h>
22
#include "
windef.h
"
23
#include "
winbase.h
"
24
#include "
objbase.h
"
25
#include "
rpcproxy.h
"
26
27
static
HINSTANCE
instance
;
28
29
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
30
{
31
return
S_FALSE
;
32
}
33
34
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstance,
DWORD
reason
,
LPVOID
reserved
)
35
{
36
switch
(
reason
)
37
{
38
case
DLL_PROCESS_ATTACH
:
39
instance
= hinstance;
40
DisableThreadLibraryCalls
(hinstance);
41
break
;
42
}
43
return
TRUE
;
44
}
45
46
/***********************************************************************
47
* DllRegisterServer (MSXML6.@)
48
*/
49
HRESULT
WINAPI
DllRegisterServer
(
void
)
50
{
51
return
__wine_register_resources
(
instance
);
52
}
53
54
/***********************************************************************
55
* DllUnregisterServer (MSXML6.@)
56
*/
57
HRESULT
WINAPI
DllUnregisterServer
(
void
)
58
{
59
return
__wine_unregister_resources
(
instance
);
60
}
TRUE
#define TRUE
Definition:
types.h:120
DllMain
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
Definition:
main.c:26
DllRegisterServer
HRESULT WINAPI DllRegisterServer(void)
Definition:
main.c:212
instance
static HINSTANCE instance
Definition:
main.c:40
DllUnregisterServer
HRESULT WINAPI DllUnregisterServer(void)
Definition:
main.c:220
DllCanUnloadNow
HRESULT WINAPI DllCanUnloadNow(void)
Definition:
main.c:204
reason
static WCHAR reason[MAX_STRING_RESOURCE_LEN]
Definition:
object.c:1904
DLL_PROCESS_ATTACH
#define DLL_PROCESS_ATTACH
Definition:
compat.h:131
DisableThreadLibraryCalls
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition:
loader.c:85
reserved
r reserved
Definition:
btrfs.c:3006
BOOL
unsigned int BOOL
Definition:
ntddk_ex.h:94
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
HRESULT
Definition:
mshtmhst.idl:286
void
Definition:
nsiface.idl:2307
objbase.h
rpcproxy.h
__wine_unregister_resources
HRESULT __wine_unregister_resources(HMODULE module) DECLSPEC_HIDDEN
Definition:
register.c:110
__wine_register_resources
HRESULT __wine_register_resources(HMODULE module) DECLSPEC_HIDDEN
Definition:
register.c:98
winbase.h
windef.h
WINAPI
#define WINAPI
Definition:
msvc.h:6
S_FALSE
#define S_FALSE
Definition:
winerror.h:2357
dll
win32
msxml6
main.c
Generated on Sun Mar 30 2025 06:16:05 for ReactOS by
1.9.6