ReactOS
0.4.16-dev-297-gc569aee
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
objsel_private.h
Go to the documentation of this file.
1
/*
2
* Object Picker Dialog Includes
3
*
4
* Copyright 2005 Thomas Weidenmueller <w3seek@reactos.com>
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
#pragma once
22
23
#include <string.h>
24
#include <stdarg.h>
25
#include <stdio.h>
26
#include "
winerror.h
"
27
#include "
windef.h
"
28
#include "
winbase.h
"
29
#include "
winreg.h
"
30
#include "
wingdi.h
"
31
#include "
winuser.h
"
32
33
#define COBJMACROS
34
35
#include "
ole2.h
"
36
#include "strmif.h"
37
#include "
olectl.h
"
38
#include "unknwn.h"
39
#include "
objsel.h
"
40
#include "
uuids.h
"
41
42
/**********************************************************************
43
* Dll lifetime tracking declaration for objsel.dll
44
*/
45
46
extern
LONG
dll_refs
DECLSPEC_HIDDEN
;
47
48
/**********************************************************************
49
* ClassFactory declaration for objsel.dll
50
*/
51
typedef
struct
52
{
53
IClassFactory
IClassFactory_iface;
54
LONG
ref
;
55
}
ClassFactoryImpl
;
56
57
typedef
struct
58
{
59
IDsObjectPicker
IDsObjectPicker_iface
;
60
LONG
ref
;
61
}
IDsObjectPickerImpl
;
62
63
HRESULT
WINAPI
OBJSEL_IDsObjectPicker_Create
(
LPVOID
*ppvObj)
DECLSPEC_HIDDEN
;
64
65
extern
ClassFactoryImpl
OBJSEL_ClassFactory
DECLSPEC_HIDDEN
;
dll_refs
DECLSPEC_HIDDEN LONG dll_refs
Definition:
devenum_main.c:28
HRESULT
Definition:
mshtmhst.idl:286
IClassFactory
Definition:
unknwn.idl:69
void
Definition:
nsiface.idl:2307
OBJSEL_ClassFactory
ClassFactoryImpl OBJSEL_ClassFactory
Definition:
factory.c:168
objsel.h
DECLSPEC_HIDDEN
LONG dll_refs DECLSPEC_HIDDEN
Definition:
objsel_private.h:65
OBJSEL_IDsObjectPicker_Create
HRESULT WINAPI OBJSEL_IDsObjectPicker_Create(LPVOID *ppvObj) DECLSPEC_HIDDEN
Definition:
objsel.c:220
ole2.h
olectl.h
LONG
long LONG
Definition:
pedump.c:60
ClassFactoryImpl
Definition:
factory.c:25
IDsObjectPickerImpl
Definition:
objsel_private.h:58
IDsObjectPickerImpl::ref
LONG ref
Definition:
objsel_private.h:60
IDsObjectPickerImpl::IDsObjectPicker_iface
IDsObjectPicker IDsObjectPicker_iface
Definition:
objsel_private.h:59
ref
Definition:
send.c:48
uuids.h
winbase.h
windef.h
WINAPI
#define WINAPI
Definition:
msvc.h:6
winerror.h
wingdi.h
winreg.h
winuser.h
dll
win32
objsel
objsel_private.h
Generated on Wed Nov 27 2024 06:04:30 for ReactOS by
1.9.6