Group: Remote Procedure Call (RPC) - Library: rpcrt4
RPC_STATUS RPC_ENTRY UuidFromString(
unsigned char __RPC_FAR *StringUuid,
UUID __RPC_FAR *Uuid
);
DECLARE INTEGER UuidFromString IN Rpcrt4;
STRING @StringUuid,;
STRING @Uuid
StringUuid Pointer to a string representation of a UUID.
Uuid Returns a pointer to a UUID in binary form.
Returns RPC_S_OK (0) if the call succeeded.
This function converts the string representation of a UUID, for example E911188C-E98C-478F-97E6-19F365143953, to the binary form.
See also: UuidToString, UuidCreate.