2002-03-09 23:29:33 +00: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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-09 23:29:33 +00:00
|
|
|
*/
|
|
|
|
|
2000-08-03 04:19:24 +00:00
|
|
|
#ifndef GUID_DEFINED
|
|
|
|
#define GUID_DEFINED
|
2013-08-29 13:09:40 +00:00
|
|
|
|
|
|
|
#ifdef __WIDL__
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned long Data1;
|
|
|
|
unsigned short Data2;
|
|
|
|
unsigned short Data3;
|
|
|
|
byte Data4[ 8 ];
|
|
|
|
} GUID;
|
|
|
|
#else
|
2000-08-03 04:19:24 +00:00
|
|
|
typedef struct _GUID
|
|
|
|
{
|
2022-01-27 10:15:55 +00:00
|
|
|
#ifndef __LP64__
|
2000-08-03 04:19:24 +00:00
|
|
|
unsigned long Data1;
|
2006-10-15 10:27:34 +00:00
|
|
|
#else
|
|
|
|
unsigned int Data1;
|
|
|
|
#endif
|
2000-08-03 04:19:24 +00:00
|
|
|
unsigned short Data2;
|
|
|
|
unsigned short Data3;
|
|
|
|
unsigned char Data4[ 8 ];
|
|
|
|
} GUID;
|
2013-08-29 13:09:40 +00:00
|
|
|
#endif
|
2011-07-14 15:21:11 +00:00
|
|
|
|
|
|
|
/* Macros for __uuidof emulation */
|
2020-02-05 16:12:22 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# if defined(__MINGW32__)
|
2022-05-02 16:05:30 +00:00
|
|
|
# if !defined(__uuidof) /* Mingw64 can provide support for __uuidof and __CRT_UUID_DECL */
|
|
|
|
# define __WINE_UUID_ATTR __attribute__((selectany))
|
|
|
|
# undef __CRT_UUID_DECL
|
|
|
|
# endif
|
2020-02-05 16:12:22 +00:00
|
|
|
# elif defined(__GNUC__)
|
|
|
|
# define __WINE_UUID_ATTR __attribute__((visibility("hidden"),weak))
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __WINE_UUID_ATTR
|
2011-07-14 15:21:11 +00:00
|
|
|
|
|
|
|
extern "C++" {
|
2020-02-05 16:12:22 +00:00
|
|
|
template<typename T> struct __wine_uuidof;
|
|
|
|
|
|
|
|
template<typename T> struct __wine_uuidof_type {
|
|
|
|
typedef __wine_uuidof<T> inst;
|
|
|
|
};
|
|
|
|
template<typename T> struct __wine_uuidof_type<T *> {
|
|
|
|
typedef __wine_uuidof<T> inst;
|
|
|
|
};
|
|
|
|
template<typename T> struct __wine_uuidof_type<T * const> {
|
|
|
|
typedef __wine_uuidof<T> inst;
|
|
|
|
};
|
2011-07-14 15:21:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define __CRT_UUID_DECL(type,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
|
|
|
|
extern "C++" { \
|
2020-02-05 16:12:22 +00:00
|
|
|
template<> struct __wine_uuidof<type> { \
|
|
|
|
static const GUID uuid; \
|
|
|
|
}; \
|
|
|
|
__WINE_UUID_ATTR const GUID __wine_uuidof<type>::uuid = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}; \
|
2011-07-14 15:21:11 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 13:06:28 +00:00
|
|
|
#define __uuidof(type) __wine_uuidof_type<__typeof__(type)>::inst::uuid
|
2011-07-14 15:21:11 +00:00
|
|
|
|
2022-05-02 16:05:30 +00:00
|
|
|
#elif !defined(__CRT_UUID_DECL)
|
2011-07-14 15:21:11 +00:00
|
|
|
|
|
|
|
#define __CRT_UUID_DECL(type,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
|
|
|
|
|
2020-02-05 16:12:22 +00:00
|
|
|
#endif /* __WINE_UUID_ATTR */
|
2011-07-14 15:21:11 +00:00
|
|
|
|
2000-08-03 04:19:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef DEFINE_GUID
|
|
|
|
|
2021-10-13 08:58:44 +00:00
|
|
|
#ifndef DECLSPEC_HIDDEN
|
|
|
|
# if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
|
|
|
|
# define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))
|
|
|
|
# else
|
|
|
|
# define DECLSPEC_HIDDEN
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2000-08-03 04:19:24 +00:00
|
|
|
#ifdef INITGUID
|
2005-09-02 12:17:52 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2006-06-12 10:01:38 +00:00
|
|
|
EXTERN_C const GUID name DECLSPEC_HIDDEN; \
|
2005-09-02 12:17:52 +00:00
|
|
|
EXTERN_C const GUID name = \
|
|
|
|
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
|
|
|
#else
|
2000-08-03 04:19:24 +00:00
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2006-06-12 10:01:38 +00:00
|
|
|
const GUID name DECLSPEC_HIDDEN; \
|
2000-08-03 04:19:24 +00:00
|
|
|
const GUID name = \
|
|
|
|
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
2005-09-02 12:17:52 +00:00
|
|
|
#endif
|
2000-08-03 04:19:24 +00:00
|
|
|
#else
|
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2006-06-12 10:01:38 +00:00
|
|
|
EXTERN_C const GUID name DECLSPEC_HIDDEN
|
2000-08-03 04:19:24 +00: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 21:15:41 +00:00
|
|
|
#ifndef __LPGUID_DEFINED__
|
2011-08-27 20:28:00 +00:00
|
|
|
#define __LPGUID_DEFINED__
|
2000-08-03 04:19:24 +00:00
|
|
|
typedef GUID *LPGUID;
|
2006-05-22 21:15:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __LPCGUID_DEFINED__
|
|
|
|
#define __LPCGUID_DEFINED__
|
|
|
|
typedef const GUID *LPCGUID;
|
|
|
|
#endif
|
|
|
|
|
2004-02-09 20:48:57 +00:00
|
|
|
#ifndef __IID_DEFINED__
|
|
|
|
#define __IID_DEFINED__
|
2006-05-22 21:15:41 +00:00
|
|
|
|
2000-08-03 04:19:24 +00:00
|
|
|
typedef GUID IID,*LPIID;
|
2006-05-22 21:15:41 +00:00
|
|
|
typedef GUID CLSID,*LPCLSID;
|
2000-08-03 04:19:24 +00:00
|
|
|
typedef GUID FMTID,*LPFMTID;
|
2006-05-22 21:15:41 +00: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 04:19:24 +00:00
|
|
|
|
2004-09-06 21:25:16 +00:00
|
|
|
#ifdef __midl_proxy
|
|
|
|
#define __MIDL_CONST
|
|
|
|
#else
|
|
|
|
#define __MIDL_CONST const
|
|
|
|
#endif
|
|
|
|
|
2006-05-22 21:15:41 +00:00
|
|
|
#endif /* ndef __IID_DEFINED__ */
|
|
|
|
|
2012-06-14 12:10:59 +00:00
|
|
|
#ifdef __cplusplus
|
2000-08-03 04:19:24 +00:00
|
|
|
#define REFGUID const GUID &
|
|
|
|
#define REFCLSID const CLSID &
|
|
|
|
#define REFIID const IID &
|
|
|
|
#define REFFMTID const FMTID &
|
2020-03-30 05:29:30 +00:00
|
|
|
#else
|
2004-09-06 21:25:16 +00: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
|
2020-03-30 05:29:30 +00:00
|
|
|
#endif
|
2000-08-03 04:19:24 +00:00
|
|
|
|
2020-03-30 05:29:30 +00:00
|
|
|
#ifdef __cplusplus
|
2000-08-03 04:19:24 +00:00
|
|
|
#define IsEqualGUID(rguid1, rguid2) (!memcmp(&(rguid1), &(rguid2), sizeof(GUID)))
|
2019-07-19 03:44:17 +00:00
|
|
|
inline int InlineIsEqualGUID(REFGUID rguid1, REFGUID rguid2)
|
|
|
|
{
|
2020-07-16 19:15:38 +00:00
|
|
|
return (((unsigned int *)&rguid1)[0] == ((unsigned int *)&rguid2)[0] &&
|
|
|
|
((unsigned int *)&rguid1)[1] == ((unsigned int *)&rguid2)[1] &&
|
|
|
|
((unsigned int *)&rguid1)[2] == ((unsigned int *)&rguid2)[2] &&
|
|
|
|
((unsigned int *)&rguid1)[3] == ((unsigned int *)&rguid2)[3]);
|
2019-07-19 03:44:17 +00:00
|
|
|
}
|
2020-03-30 05:29:30 +00:00
|
|
|
#else
|
2000-08-03 04:19:24 +00:00
|
|
|
#define IsEqualGUID(rguid1, rguid2) (!memcmp(rguid1, rguid2, sizeof(GUID)))
|
2019-07-19 03:44:17 +00:00
|
|
|
#define InlineIsEqualGUID(rguid1, rguid2) \
|
2020-07-16 19:15:38 +00:00
|
|
|
(((unsigned int *)rguid1)[0] == ((unsigned int *)rguid2)[0] && \
|
|
|
|
((unsigned int *)rguid1)[1] == ((unsigned int *)rguid2)[1] && \
|
|
|
|
((unsigned int *)rguid1)[2] == ((unsigned int *)rguid2)[2] && \
|
|
|
|
((unsigned int *)rguid1)[3] == ((unsigned int *)rguid2)[3])
|
2020-03-30 05:29:30 +00:00
|
|
|
#endif
|
2000-08-03 04:19:24 +00:00
|
|
|
|
2020-03-30 05:29:30 +00:00
|
|
|
#ifdef __cplusplus
|
2001-05-07 18:20:32 +00:00
|
|
|
#include <string.h>
|
2000-08-11 00:39:26 +00:00
|
|
|
inline bool operator==(const GUID& guidOne, const GUID& guidOther)
|
2000-08-03 04:19:24 +00:00
|
|
|
{
|
|
|
|
return !memcmp(&guidOne,&guidOther,sizeof(GUID));
|
|
|
|
}
|
2000-08-11 00:39:26 +00:00
|
|
|
inline bool operator!=(const GUID& guidOne, const GUID& guidOther)
|
2000-08-03 04:19:24 +00:00
|
|
|
{
|
|
|
|
return !(guidOne == guidOther);
|
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
#endif
|
2000-08-03 04:19:24 +00:00
|
|
|
|
|
|
|
#endif /* _GUIDDEF_H_ */
|