Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.01 KB

UuidFromString.md

File metadata and controls

51 lines (34 loc) · 1.01 KB

Home

Function name : UuidFromString

Group: Remote Procedure Call (RPC) - Library: rpcrt4


Converts a string to a UUID.


Declaration:

RPC_STATUS RPC_ENTRY UuidFromString(
	unsigned char __RPC_FAR *StringUuid,
	UUID __RPC_FAR *Uuid
);  

FoxPro declaration:

DECLARE INTEGER UuidFromString IN Rpcrt4;
	STRING @StringUuid,;
	STRING @Uuid  

Parameters:

StringUuid Pointer to a string representation of a UUID.

Uuid Returns a pointer to a UUID in binary form.


Return value:

Returns RPC_S_OK (0) if the call succeeded.


Comments:

This function converts the string representation of a UUID, for example E911188C-E98C-478F-97E6-19F365143953, to the binary form.

See also: UuidToString, UuidCreate.