2004-01-02 19:49:47 +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
|
2007-04-20 02:30:53 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-01-02 19:49:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUID_DEFINED
|
|
|
|
#define GUID_DEFINED
|
2014-06-01 21:47:51 +00:00
|
|
|
|
2004-01-02 19:49:47 +00:00
|
|
|
typedef struct _GUID
|
|
|
|
{
|
2007-04-20 02:30:53 +00:00
|
|
|
#ifdef _MSC_VER
|
2004-01-02 19:49:47 +00:00
|
|
|
unsigned long Data1;
|
2007-04-20 02:30:53 +00:00
|
|
|
#else
|
|
|
|
unsigned int Data1;
|
|
|
|
#endif
|
2004-01-02 19:49:47 +00:00
|
|
|
unsigned short Data2;
|
|
|
|
unsigned short Data3;
|
|
|
|
unsigned char Data4[ 8 ];
|
|
|
|
} GUID;
|
|
|
|
#endif
|
|
|
|
|
2014-06-01 21:47:51 +00:00
|
|
|
#ifndef FAR
|
|
|
|
#define FAR
|
|
|
|
#endif
|
|
|
|
|
2008-12-19 18:39:32 +00:00
|
|
|
#ifndef DECLSPEC_SELECTANY
|
|
|
|
#define DECLSPEC_SELECTANY __declspec(selectany)
|
|
|
|
#endif
|
|
|
|
|
2009-04-06 01:21:04 +00:00
|
|
|
#ifndef EXTERN_C
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN_C extern "C"
|
|
|
|
#else
|
|
|
|
#define EXTERN_C extern
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2004-01-02 19:49:47 +00:00
|
|
|
#undef DEFINE_GUID
|
|
|
|
|
|
|
|
#ifdef INITGUID
|
2007-04-20 02:30:53 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2009-06-01 18:59:44 +00:00
|
|
|
EXTERN_C const GUID DECLSPEC_SELECTANY name = \
|
2007-04-20 02:30:53 +00:00
|
|
|
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
|
|
|
#else
|
2004-01-02 19:49:47 +00:00
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2009-06-01 18:59:44 +00:00
|
|
|
const GUID DECLSPEC_SELECTANY name = \
|
2004-01-02 19:49:47 +00:00
|
|
|
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
2007-04-20 02:30:53 +00:00
|
|
|
#endif
|
2004-01-02 19:49:47 +00:00
|
|
|
#else
|
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
2007-04-20 02:30:53 +00:00
|
|
|
EXTERN_C const GUID name
|
2004-01-02 19:49:47 +00:00
|
|
|
#endif
|
|
|
|
|
2007-04-20 02:30:53 +00:00
|
|
|
#define DEFINE_OLEGUID(name, l, w1, w2) \
|
|
|
|
DEFINE_GUID(name, l, w1, w2, 0xC0,0,0,0,0,0,0,0x46)
|
|
|
|
|
2004-01-02 19:49:47 +00:00
|
|
|
#ifndef _GUIDDEF_H_
|
|
|
|
#define _GUIDDEF_H_
|
|
|
|
|
2007-04-20 02:30:53 +00:00
|
|
|
#ifndef __LPGUID_DEFINED__
|
2012-05-17 15:05:17 +00:00
|
|
|
#define __LPGUID_DEFINED__
|
2004-01-02 19:49:47 +00:00
|
|
|
typedef GUID *LPGUID;
|
2007-04-20 02:30:53 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __LPCGUID_DEFINED__
|
|
|
|
#define __LPCGUID_DEFINED__
|
|
|
|
typedef const GUID *LPCGUID;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __IID_DEFINED__
|
|
|
|
#define __IID_DEFINED__
|
|
|
|
|
2004-01-02 19:49:47 +00:00
|
|
|
typedef GUID IID,*LPIID;
|
2007-04-20 02:30:53 +00:00
|
|
|
typedef GUID CLSID,*LPCLSID;
|
2004-01-02 19:49:47 +00:00
|
|
|
typedef GUID FMTID,*LPFMTID;
|
2007-04-20 02:30:53 +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
|
|
|
|
|
|
|
|
#ifdef __midl_proxy
|
|
|
|
#define __MIDL_CONST
|
|
|
|
#else
|
|
|
|
#define __MIDL_CONST const
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ndef __IID_DEFINED__ */
|
2004-01-02 19:49:47 +00: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) */
|
2007-04-20 02:30:53 +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
|
2004-01-02 19:49:47 +00:00
|
|
|
#endif /* !defined(__cplusplus) && !defined(CINTERFACE) */
|
|
|
|
|
2014-06-01 21:47:51 +00:00
|
|
|
#if !defined(__midl) && !defined(__WIDL__)
|
|
|
|
#include <string.h>
|
2004-01-02 19:49:47 +00:00
|
|
|
#if defined(__cplusplus) && !defined(CINTERFACE)
|
[browseui, shell32, explorer_new, include]
- Convert browseui to C++/ATL. As part of this, classes in browseui and now registered with .rgs files.
- Add AddressBand, AddressEditBox, BandProxy, BaseBar, BaseBarSite, BrandBand, InternetToolbar, ShellBrowser, ToolsBand, and TravelLog.
- Add stub implementations of commonbrowser, globalfoldersettings, and regtreeoptions.
- Clean up some msvc compile problems in a few files.
- Reorganize some headers to make them better match the Platform SDK.
- Move InlineIsEqualGUID to guiddef.h.
- Create new header files shlguid_undoc.h, shlobj_undoc.h, and shlwapi_undoc.h to hold undocumented types, functions, and GUIDs.
- Move some undocumented definitions declared in explorer_new/todo.h and undoc.h to new headers.
- Rename a few interfaces in explorer_new to the correct name
- Add definition of RBSTR_CHANGERECT to commctrl.h
- IDeskBarClient inherits from IOleWindow, not IUnknown
- HMONITOR was declared in both dxsdk/axextend.idl and wine/wined3d.idl, but not in wtypes.idl where it belongs
- Added Init and Term to CComModule
- Thanks to encoded for solving the browseui linking problem!
svn path=/trunk/; revision=43872
2009-10-31 14:25:45 +00:00
|
|
|
|
|
|
|
__inline int InlineIsEqualGUID(REFGUID rguid1, REFGUID rguid2)
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
((unsigned long *) &rguid1)[0] == ((unsigned long *) &rguid2)[0] &&
|
|
|
|
((unsigned long *) &rguid1)[1] == ((unsigned long *) &rguid2)[1] &&
|
|
|
|
((unsigned long *) &rguid1)[2] == ((unsigned long *) &rguid2)[2] &&
|
|
|
|
((unsigned long *) &rguid1)[3] == ((unsigned long *) &rguid2)[3]);
|
|
|
|
}
|
2015-03-28 21:11:42 +00:00
|
|
|
|
|
|
|
__inline int IsEqualGUID(REFGUID rguid1, REFGUID rguid2)
|
|
|
|
{
|
|
|
|
return !memcmp(&rguid1, &rguid2, sizeof(GUID));
|
|
|
|
}
|
2012-06-08 13:10:52 +00:00
|
|
|
|
2004-01-02 19:49:47 +00:00
|
|
|
#else /* defined(__cplusplus) && !defined(CINTERFACE) */
|
2012-06-08 13:10:52 +00:00
|
|
|
|
|
|
|
#define InlineIsEqualGUID(rguid1, rguid2) \
|
|
|
|
(((unsigned long *)rguid1)[0] == ((unsigned long *)rguid2)[0] && \
|
|
|
|
((unsigned long *)rguid1)[1] == ((unsigned long *)rguid2)[1] && \
|
|
|
|
((unsigned long *)rguid1)[2] == ((unsigned long *)rguid2)[2] && \
|
|
|
|
((unsigned long *)rguid1)[3] == ((unsigned long *)rguid2)[3])
|
2004-01-02 19:49:47 +00:00
|
|
|
#define IsEqualGUID(rguid1, rguid2) (!memcmp(rguid1, rguid2, sizeof(GUID)))
|
2012-06-08 13:10:52 +00:00
|
|
|
|
2004-01-02 19:49:47 +00:00
|
|
|
#endif /* defined(__cplusplus) && !defined(CINTERFACE) */
|
2014-06-01 21:47:51 +00:00
|
|
|
#endif /* __midl && __WIDL__ */
|
2004-01-02 19:49:47 +00:00
|
|
|
|
|
|
|
#if defined(__cplusplus) && !defined(CINTERFACE)
|
|
|
|
#include <string.h>
|
2009-03-01 12:45:32 +00:00
|
|
|
#if !defined _SYS_GUID_OPERATOR_EQ_ && !defined _NO_SYS_GUID_OPERATOR_EQ_
|
|
|
|
#define _SYS_GUID_OPERATOR_EQ_
|
2004-01-02 19:49:47 +00:00
|
|
|
inline bool operator==(const GUID& guidOne, const GUID& guidOther)
|
|
|
|
{
|
|
|
|
return !memcmp(&guidOne,&guidOther,sizeof(GUID));
|
|
|
|
}
|
|
|
|
inline bool operator!=(const GUID& guidOne, const GUID& guidOther)
|
|
|
|
{
|
|
|
|
return !(guidOne == guidOther);
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-01 12:45:32 +00:00
|
|
|
#endif
|
2004-01-02 19:49:47 +00:00
|
|
|
|
|
|
|
#endif /* _GUIDDEF_H_ */
|