--- Cannot embed stylesheet: [Errno 2] No such file or directory: '../../../aros.css' --->
| UUID_Clear() | UUID_Compare() | UUID_Copy() | UUID_Generate() |
void UUID_Clear(
uuid_t * uuid );
Clears the specified uuid.
uuid - UUID to be cleared.
This function always succeeds.
int UUID_Compare(
const uuid_t * u1,
const uuid_t * u2 );
Compares between two UUIDs.
u1, u2 - UUIDs to be compared.
<0 - if the u1 is lexically BEFORE u2 =0 - if u1 equals u2 >0 - if the u1 is lexically AFTER u2
void UUID_Copy(
const uuid_t * src,
uuid_t * dst );
Copies the UUID's.
src - the source UUID. dst - the desitation UUID.
This function always succeeds.
void UUID_Generate(
uuid_type_t type,
uuid_t * uuid );
Generate Universally Unique Identifier conforming the RFC 4122.
type - type of the identifier:
UUID_TYPE_DCE_RANDOM - random identifier. Do not use it on purpose
due to the weak source of noise on AROS.
UUID_TYPE_DCE_TIME - system time based identifier.
uuid - storage for generated UUID.
This function always succeeds.