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 #ifndef _OBJSEL_PRIVATE_H 22 #define _OBJSEL_PRIVATE_H 23 24 #include <stdarg.h> 25 26 #define WIN32_NO_STATUS 27 #define _INC_WINDOWS 28 #define COM_NO_WINDOWS_H 29 30 #define COBJMACROS 31 32 #include <windef.h> 33 #include <winbase.h> 34 #include <objbase.h> 35 #include <objsel.h> 36 37 #include <wine/debug.h> 38 WINE_DEFAULT_DEBUG_CHANNEL(objsel); 39 40 /********************************************************************** 41 * Dll lifetime tracking declaration for objsel.dll 42 */ 43 44 extern LONG dll_refs DECLSPEC_HIDDEN; 45 46 /********************************************************************** 47 * ClassFactory declaration for objsel.dll 48 */ 49 typedef struct 50 { 51 IClassFactory IClassFactory_iface; 52 LONG ref; 53 } ClassFactoryImpl; 54 55 typedef struct 56 { 57 IDsObjectPicker IDsObjectPicker_iface; 58 LONG ref; 59 } IDsObjectPickerImpl; 60 61 HRESULT WINAPI OBJSEL_IDsObjectPicker_Create(LPVOID *ppvObj) DECLSPEC_HIDDEN; 62 63 extern ClassFactoryImpl OBJSEL_ClassFactory DECLSPEC_HIDDEN; 64 65 #endif /* _OBJSEL_PRIVATE_H */ 66