2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* 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-03-10 00:29:33 +01:00
|
|
|
*/
|
|
|
|
|
2000-08-03 06:19:24 +02:00
|
|
|
#ifndef GUID_DEFINED
|
|
|
|
#define GUID_DEFINED
|
|
|
|
typedef struct _GUID
|
|
|
|
{
|
2006-12-20 14:26:08 +01:00
|
|
|
#ifdef _MSC_VER
|
2000-08-03 06:19:24 +02:00
|
|
|
unsigned long Data1;
|
2006-10-15 12:27:34 +02:00
|
|
|
#else
|
|
|
|
unsigned int Data1;
|
|
|
|
#endif
|
2000-08-03 06:19:24 +02:00
|
|
|
unsigned short Data2;
|
|
|
|
unsigned short Data3;
|
|
|
|
unsigned char Data4[ 8 ];
|
|
|
|
} GUID;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef DEFINE_GUID
|
|
|
|
|
|
|
|
#ifdef INITGUID
|
2005-09-02 14:17:52 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2006-06-12 12:01:38 +02:00
|
|
|
EXTERN_C const GUID name DECLSPEC_HIDDEN; \
|
2005-09-02 14:17:52 +02:00
|
|
|
EXTERN_C const GUID name = \
|
|
|
|
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
|
|
|
#else
|
2000-08-03 06:19:24 +02:00
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2006-06-12 12:01:38 +02:00
|
|
|
const GUID name DECLSPEC_HIDDEN; \
|
2000-08-03 06:19:24 +02:00
|
|
|
const GUID name = \
|
|
|
|
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
2005-09-02 14:17:52 +02:00
|
|
|
#endif
|
2000-08-03 06:19:24 +02:00
|
|
|
#else
|
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2006-06-12 12:01:38 +02:00
|
|
|
EXTERN_C const GUID name DECLSPEC_HIDDEN
|
2000-08-03 06:19:24 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEFINE_OLEGUID(name, l, w1, w2) \
|
|
|
|
DEFINE_GUID(name, l, w1, w2, 0xC0,0,0,0,0,0,0,0x46)
|
|
|
|
|
|
|
|
#ifndef _GUIDDEF_H_
|
|
|
|
#define _GUIDDEF_H_
|
|
|
|
|
2006-05-22 23:15:41 +02:00
|
|
|
#ifndef __LPGUID_DEFINED__
|
|
|
|
#define __LPGUID_DEFINED___
|
2000-08-03 06:19:24 +02:00
|
|
|
typedef GUID *LPGUID;
|
2006-05-22 23:15:41 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __LPCGUID_DEFINED__
|
|
|
|
#define __LPCGUID_DEFINED__
|
|
|
|
typedef const GUID *LPCGUID;
|
|
|
|
#endif
|
|
|
|
|
2004-02-09 21:48:57 +01:00
|
|
|
#ifndef __IID_DEFINED__
|
|
|
|
#define __IID_DEFINED__
|
2006-05-22 23:15:41 +02:00
|
|
|
|
2000-08-03 06:19:24 +02:00
|
|
|
typedef GUID IID,*LPIID;
|
2006-05-22 23:15:41 +02:00
|
|
|
typedef GUID CLSID,*LPCLSID;
|
2000-08-03 06:19:24 +02:00
|
|
|
typedef GUID FMTID,*LPFMTID;
|
2006-05-22 23:15:41 +02:00
|
|
|
#define IsEqualIID(riid1, riid2) IsEqualGUID(riid1, riid2)
|
|
|
|
#define IsEqualCLSID(rclsid1, rclsid2) IsEqualGUID(rclsid1, rclsid2)
|
|
|
|
#define IsEqualFMTID(rfmtid1, rfmtid2) IsEqualGUID(rfmtid1, rfmtid2)
|
|
|
|
#define IID_NULL GUID_NULL
|
|
|
|
#define CLSID_NULL GUID_NULL
|
|
|
|
#define FMTID_NULL GUID_NULL
|
2000-08-03 06:19:24 +02:00
|
|
|
|
2004-09-06 23:25:16 +02:00
|
|
|
#ifdef __midl_proxy
|
|
|
|
#define __MIDL_CONST
|
|
|
|
#else
|
|
|
|
#define __MIDL_CONST const
|
|
|
|
#endif
|
|
|
|
|
2006-05-22 23:15:41 +02:00
|
|
|
#endif /* ndef __IID_DEFINED__ */
|
|
|
|
|
2000-08-03 06:19:24 +02:00
|
|
|
#if defined(__cplusplus) && !defined(CINTERFACE)
|
|
|
|
#define REFGUID const GUID &
|
|
|
|
#define REFCLSID const CLSID &
|
|
|
|
#define REFIID const IID &
|
|
|
|
#define REFFMTID const FMTID &
|
|
|
|
#else /* !defined(__cplusplus) && !defined(CINTERFACE) */
|
2004-09-06 23:25:16 +02:00
|
|
|
#define REFGUID const GUID* __MIDL_CONST
|
|
|
|
#define REFCLSID const CLSID* __MIDL_CONST
|
|
|
|
#define REFIID const IID* __MIDL_CONST
|
|
|
|
#define REFFMTID const FMTID* __MIDL_CONST
|
2000-08-03 06:19:24 +02:00
|
|
|
#endif /* !defined(__cplusplus) && !defined(CINTERFACE) */
|
|
|
|
|
|
|
|
#if defined(__cplusplus) && !defined(CINTERFACE)
|
|
|
|
#define IsEqualGUID(rguid1, rguid2) (!memcmp(&(rguid1), &(rguid2), sizeof(GUID)))
|
|
|
|
#else /* defined(__cplusplus) && !defined(CINTERFACE) */
|
|
|
|
#define IsEqualGUID(rguid1, rguid2) (!memcmp(rguid1, rguid2, sizeof(GUID)))
|
|
|
|
#endif /* defined(__cplusplus) && !defined(CINTERFACE) */
|
|
|
|
|
|
|
|
#if defined(__cplusplus) && !defined(CINTERFACE)
|
2001-05-07 20:20:32 +02:00
|
|
|
#include <string.h>
|
2000-08-11 02:39:26 +02:00
|
|
|
inline bool operator==(const GUID& guidOne, const GUID& guidOther)
|
2000-08-03 06:19:24 +02:00
|
|
|
{
|
|
|
|
return !memcmp(&guidOne,&guidOther,sizeof(GUID));
|
|
|
|
}
|
2000-08-11 02:39:26 +02:00
|
|
|
inline bool operator!=(const GUID& guidOne, const GUID& guidOther)
|
2000-08-03 06:19:24 +02:00
|
|
|
{
|
|
|
|
return !(guidOne == guidOther);
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
#endif
|
2000-08-03 06:19:24 +02:00
|
|
|
|
|
|
|
extern const IID GUID_NULL;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-08-03 06:19:24 +02:00
|
|
|
#endif /* _GUIDDEF_H_ */
|