Go to the source code of this file.
Definition at line 71 of file pfc.h.
Data Fields |
uint32_t |
Data1 |
|
uint16_t |
Data2 |
|
uint16_t |
Data3 |
|
uint8_t |
Data4[8] |
|
__inline bool __InlineIsEqualGUID |
( |
REFGUID |
rguid1, |
|
|
REFGUID |
rguid2 |
|
) |
| |
Definition at line 49 of file pfc.h.
52 ((
unsigned long *) &rguid1)[0] == ((
unsigned long *) &rguid2)[0] &&
53 ((
unsigned long *) &rguid1)[1] == ((
unsigned long *) &rguid2)[1] &&
54 ((
unsigned long *) &rguid1)[2] == ((
unsigned long *) &rguid2)[2] &&
55 ((
unsigned long *) &rguid1)[3] == ((
unsigned long *) &rguid2)[3]);
bool operator!= |
( |
REFGUID |
guidOne, |
|
|
REFGUID |
guidOther |
|
) |
| |
|
inline |
Definition at line 59 of file pfc.h.
__inline bool __InlineIsEqualGUID(REFGUID rguid1, REFGUID rguid2)
bool operator!= |
( |
const GUID & |
p_item1, |
|
|
const GUID & |
p_item2 |
|
) |
| |
|
inline |
Definition at line 82 of file pfc.h.
83 return memcmp(&p_item1,&p_item2,
sizeof(
GUID)) != 0;
bool operator== |
( |
REFGUID |
guidOne, |
|
|
REFGUID |
guidOther |
|
) |
| |
|
inline |
Definition at line 58 of file pfc.h.
__inline bool __InlineIsEqualGUID(REFGUID rguid1, REFGUID rguid2)
bool operator== |
( |
const GUID & |
p_item1, |
|
|
const GUID & |
p_item2 |
|
) |
| |
|
inline |
Definition at line 78 of file pfc.h.
79 return memcmp(&p_item1,&p_item2,
sizeof(
GUID)) == 0;