2002-05-14 23:50:56 +02:00
|
|
|
/*
|
|
|
|
* includes for comcat.dll
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 John K. Hohm
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-05-14 23:50:56 +02:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2004-10-07 05:06:48 +02:00
|
|
|
#define COBJMACROS
|
|
|
|
|
2002-05-14 23:50:56 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2002-06-13 21:13:38 +02:00
|
|
|
#include "winuser.h"
|
2002-05-20 00:27:41 +02:00
|
|
|
#include "winreg.h"
|
2002-05-14 23:50:56 +02:00
|
|
|
#include "winerror.h"
|
|
|
|
|
|
|
|
#include "ole2.h"
|
2002-12-23 02:39:35 +01:00
|
|
|
#include "comcat.h"
|
2002-06-02 23:25:08 +02:00
|
|
|
#include "wine/unicode.h"
|
2002-05-14 23:50:56 +02:00
|
|
|
|
2004-08-13 02:44:22 +02:00
|
|
|
#define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
|
|
|
|
|
2002-05-14 23:50:56 +02:00
|
|
|
/**********************************************************************
|
|
|
|
* Dll lifetime tracking declaration for comcat.dll
|
|
|
|
*/
|
2005-07-11 15:21:17 +02:00
|
|
|
extern LONG dll_ref;
|
2002-05-14 23:50:56 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* ClassFactory declaration for comcat.dll
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
2005-05-27 22:17:35 +02:00
|
|
|
const IClassFactoryVtbl *lpVtbl;
|
2005-07-11 15:21:17 +02:00
|
|
|
LONG ref;
|
2002-05-14 23:50:56 +02:00
|
|
|
} ClassFactoryImpl;
|
|
|
|
|
|
|
|
extern ClassFactoryImpl COMCAT_ClassFactory;
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* StdComponentCategoriesMgr declaration for comcat.dll
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
2005-05-27 22:17:35 +02:00
|
|
|
const IUnknownVtbl *unkVtbl;
|
|
|
|
const ICatRegisterVtbl *regVtbl;
|
|
|
|
const ICatInformationVtbl *infVtbl;
|
2005-07-11 15:21:17 +02:00
|
|
|
LONG ref;
|
2002-05-14 23:50:56 +02:00
|
|
|
} ComCatMgrImpl;
|
|
|
|
|
2006-12-08 09:35:08 +01:00
|
|
|
extern ComCatMgrImpl COMCAT_ComCatMgr;
|
2005-05-27 22:17:35 +02:00
|
|
|
extern const ICatRegisterVtbl COMCAT_ICatRegister_Vtbl;
|
|
|
|
extern const ICatInformationVtbl COMCAT_ICatInformation_Vtbl;
|
2002-06-13 21:13:38 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Global string constant declarations
|
|
|
|
*/
|
|
|
|
extern const WCHAR clsid_keyname[6];
|