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 "wine/unicode.h" 41 #include "uuids.h" 42 43 /********************************************************************** 44 * Dll lifetime tracking declaration for objsel.dll 45 */ 46 47 extern LONG dll_refs DECLSPEC_HIDDEN; 48 49 /********************************************************************** 50 * ClassFactory declaration for objsel.dll 51 */ 52 typedef struct 53 { 54 IClassFactory IClassFactory_iface; 55 LONG ref; 56 } ClassFactoryImpl; 57 58 typedef struct 59 { 60 IDsObjectPicker IDsObjectPicker_iface; 61 LONG ref; 62 } IDsObjectPickerImpl; 63 64 HRESULT WINAPI OBJSEL_IDsObjectPicker_Create(LPVOID *ppvObj) DECLSPEC_HIDDEN; 65 66 extern ClassFactoryImpl OBJSEL_ClassFactory DECLSPEC_HIDDEN; 67