ReactOS
0.4.16-dev-433-g6363f78
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
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
_
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
qmgr_main.c
Go to the documentation of this file.
1
/*
2
* Main DLL interface to Queue Manager (BITS)
3
*
4
* Background Intelligent Transfer Service (BITS) interface. Dll is named
5
* qmgr for backwards compatibility with early versions of BITS.
6
*
7
* Copyright 2007 Google (Roy Shea)
8
*
9
* This library is free software; you can redistribute it and/or
10
* modify it under the terms of the GNU Lesser General Public
11
* License as published by the Free Software Foundation; either
12
* version 2.1 of the License, or (at your option) any later version.
13
*
14
* This library is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
* Lesser General Public License for more details.
18
*
19
* You should have received a copy of the GNU Lesser General Public
20
* License along with this library; if not, write to the Free Software
21
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22
*/
23
24
#include <stdio.h>
25
26
#define COBJMACROS
27
#include "
objbase.h
"
28
#include "
winuser.h
"
29
#include "
winreg.h
"
30
#include "
advpub.h
"
31
#include "
olectl.h
"
32
#include "
rpcproxy.h
"
33
#include "
winsvc.h
"
34
#include "
qmgr.h
"
35
36
#include "
wine/debug.h
"
37
38
WINE_DEFAULT_DEBUG_CHANNEL
(qmgr);
39
40
/* Handle to the base address of this DLL */
41
static
HINSTANCE
hInst
;
42
43
/* Entry point for DLL */
44
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL,
DWORD
fdwReason,
LPVOID
lpvReserved
)
45
{
46
TRACE
(
"(%p, %d, %p)\n"
, hinstDLL, fdwReason,
lpvReserved
);
47
48
switch
(fdwReason)
49
{
50
case
DLL_WINE_PREATTACH:
51
return
FALSE
;
/* prefer native version */
52
case
DLL_PROCESS_ATTACH
:
53
DisableThreadLibraryCalls
(hinstDLL);
54
hInst
= hinstDLL;
55
break
;
56
}
57
58
return
TRUE
;
59
}
60
61
HRESULT
WINAPI
DllRegisterServer
(
void
)
62
{
63
return
__wine_register_resources
(
hInst
);
64
}
65
66
HRESULT
WINAPI
DllUnregisterServer
(
void
)
67
{
68
return
__wine_unregister_resources
(
hInst
);
69
}
advpub.h
WINE_DEFAULT_DEBUG_CHANNEL
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition:
precomp.h:23
TRUE
#define TRUE
Definition:
types.h:120
FALSE
#define FALSE
Definition:
types.h:117
DLL_PROCESS_ATTACH
#define DLL_PROCESS_ATTACH
Definition:
compat.h:131
DisableThreadLibraryCalls
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition:
loader.c:85
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
lpvReserved
static IN DWORD IN LPVOID lpvReserved
Definition:
load_notifications.c:17
objbase.h
olectl.h
qmgr.h
DllRegisterServer
HRESULT WINAPI DllRegisterServer(void)
Definition:
qmgr_main.c:61
hInst
static HINSTANCE hInst
Definition:
qmgr_main.c:41
DllMain
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
Definition:
qmgr_main.c:44
DllUnregisterServer
HRESULT WINAPI DllUnregisterServer(void)
Definition:
qmgr_main.c:66
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
debug.h
TRACE
#define TRACE(s)
Definition:
solgame.cpp:4
WINAPI
#define WINAPI
Definition:
msvc.h:6
winreg.h
winsvc.h
winuser.h
dll
win32
qmgr
qmgr_main.c
Generated on Tue Jan 7 2025 06:09:16 for ReactOS by
1.9.6