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
shdocvw.h
Go to the documentation of this file.
1
/*
2
* Header includes for shdocvw.dll
3
*
4
* Copyright 2001 John R. Sheets (for CodeWeavers)
5
* Copyright 2005-2006 Jacek Caban for CodeWeavers
6
*
7
* This library is free software; you can redistribute it and/or
8
* modify it under the terms of the GNU Lesser General Public
9
* License as published by the Free Software Foundation; either
10
* version 2.1 of the License, or (at your option) any later version.
11
*
12
* This library is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
* Lesser General Public License for more details.
16
*
17
* You should have received a copy of the GNU Lesser General Public
18
* License along with this library; if not, write to the Free Software
19
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20
*/
21
22
#ifndef __WINE_SHDOCVW_H
23
#define __WINE_SHDOCVW_H
24
25
#define COBJMACROS
26
27
#include <stdarg.h>
28
29
#include "
windef.h
"
30
#include "
winbase.h
"
31
#include "
winuser.h
"
32
33
#include "
ole2.h
"
34
#include "
shlobj.h
"
35
#include "exdisp.h"
36
37
#include "
wine/heap.h
"
38
#include "wine/list.h"
39
40
/**********************************************************************
41
* Shell Instance Objects
42
*/
43
extern
HRESULT
SHDOCVW_GetShellInstanceObjectClassObject
(
REFCLSID
rclsid,
44
REFIID
riid
,
LPVOID
*ppvClassObj)
DECLSPEC_HIDDEN
;
45
46
/**********************************************************************
47
* Dll lifetime tracking declaration for shdocvw.dll
48
*/
49
#ifdef __REACTOS__
50
# ifdef __cplusplus
51
EXTERN_C
52
# else
53
extern
54
# endif
55
LONG
SHDOCVW_refCount
;
56
#else
57
extern
LONG
SHDOCVW_refCount
DECLSPEC_HIDDEN
;
58
#endif
59
static
inline
void
SHDOCVW_LockModule
(
void
) {
InterlockedIncrement
( &
SHDOCVW_refCount
); }
60
static
inline
void
SHDOCVW_UnlockModule
(
void
) {
InterlockedDecrement
( &
SHDOCVW_refCount
); }
61
62
#ifdef __REACTOS__
63
#include "resource.h"
64
#include "
objects.h
"
65
#define ARRAY_SIZE(array) _countof(array)
66
EXTERN_C
HINSTANCE
instance
;
67
#endif
// def __REACTOS__
68
69
#endif
/* __WINE_SHDOCVW_H */
InterlockedIncrement
#define InterlockedIncrement
Definition:
armddk.h:53
InterlockedDecrement
#define InterlockedDecrement
Definition:
armddk.h:52
EXTERN_C
#define EXTERN_C
Definition:
basetyps.h:12
instance
static HINSTANCE instance
Definition:
main.c:40
riid
REFIID riid
Definition:
atlbase.h:39
HRESULT
Definition:
mshtmhst.idl:286
void
Definition:
nsiface.idl:2307
objects.h
ole2.h
LONG
long LONG
Definition:
pedump.c:60
REFIID
#define REFIID
Definition:
guiddef.h:118
REFCLSID
#define REFCLSID
Definition:
guiddef.h:117
heap.h
SHDOCVW_LockModule
static void SHDOCVW_LockModule(void)
Definition:
shdocvw.h:59
SHDOCVW_UnlockModule
static void SHDOCVW_UnlockModule(void)
Definition:
shdocvw.h:60
SHDOCVW_GetShellInstanceObjectClassObject
HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppvClassObj) DECLSPEC_HIDDEN
Definition:
shlinstobj.c:365
DECLSPEC_HIDDEN
LONG SHDOCVW_refCount DECLSPEC_HIDDEN
Definition:
d3dcompiler_private.h:289
SHDOCVW_refCount
LONG SHDOCVW_refCount
Definition:
shdocvw_main.c:45
shlobj.h
winbase.h
windef.h
winuser.h
dll
win32
shdocvw
shdocvw.h
Generated on Tue Jan 7 2025 06:09:26 for ReactOS by
1.9.6