// amtvuids.h
void OUR_GUID_ENTRY(
name,
l,
w1,
w2,
b1,
b2,
b3,
b4,
b5,
b6,
b7,
b8
);
View the official Windows Driver Kit DDI referenceNo description available.
This macro is a wrapper that returns the fields of a DEFINE_GUID structure.
The DEFINE_GUID structure is defined as follows:
DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8);
nameContains the GUID name.
lContains an unsigned integer value.
w1Contains an unsigned short value.
w2Contains an unsigned short value.
b1Contains an unsigned char value.
b2Contains an unsigned char value.
b3Contains an unsigned char value.
b4Contains an unsigned char value.
b5Contains an unsigned char value.
b6Contains an unsigned char value.
b7Contains an unsigned char value.
b8Contains an unsigned char value.