Menu principal
Česky
Deutsch
Ελληυικά
English
Español
Français
Italiano
Nederlands
Polski
Português
Русский
Suomi
Svenska
News
Introduction
Téléchargement
Images
Documentation
Contact
Crédits
Acknowledgements
Sponsors
Référencement
Liens
Index
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.
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.