mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fix build.
svn path=/trunk/; revision=43647
This commit is contained in:
parent
c013577df5
commit
d1fe1b42ec
1 changed files with 9 additions and 0 deletions
|
@ -244,6 +244,15 @@ inline BOOL WINAPI InlineIsEqualUnknown(REFGUID rguid1)
|
|||
((unsigned long *)&rguid1)[3] == 0x46000000);
|
||||
}
|
||||
|
||||
inline BOOL WINAPI InlineIsEqualGUID(REFGUID rguid1, REFGUID rguid2)
|
||||
{
|
||||
return (
|
||||
((unsigned long *)&rguid1)[0] == ((unsigned long *)&rguid2)[0] &&
|
||||
((unsigned long *)&rguid1)[1] == ((unsigned long *)&rguid1)[1] &&
|
||||
((unsigned long *)&rguid1)[2] == ((unsigned long *)&rguid1)[2] &&
|
||||
((unsigned long *)&rguid1)[3] == ((unsigned long *)&rguid1)[3]);
|
||||
}
|
||||
|
||||
class CComMultiThreadModelNoCS
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue