xref: /reactos/dll/win32/objsel/objsel_private.h (revision 1734f297)
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;
66