Group: Remote Procedure Call (RPC) - Library: rpcrt4
signed int RPC_ENTRY UuidCompare(
UUID __RPC_FAR *Uuid1,
UUID __RPC_FAR *Uuid2,
RPC_STATUS __RPC_FAR *Status
);
DECLARE INTEGER UuidCompare IN Rpcrt4;
STRING Uuid1,;
STRING Uuid2,;
INTEGER @nStatus
Uuid1 Pointer to a UUID. This UUID is compared with the UUID specified in the Uuid2 parameter.
Uuid2 Pointer to a UUID. This UUID is compared with the UUID specified in the Uuid1 parameter.
Status Returns any errors that may occur, and will typically be set by the function to RPC_S_OK upon return.
Returns -1 (1st is less), 0 (equal) or 1 (greater) based on the comparison of the 1st and 2nd UUIDS.
See also: UuidCreate, UuidCreateSequential