uuid_to_string- converts a UUID from a binary representation to a string representation
#include <dce/uuid.h>
void uuid_to_string(
uuid_t *uuid,
unsigned_char_t **string_uuid,
unsigned32 *status);
Input
- uuid
- Specifies a UUID to be converted to string format.
Output
- string_uuid
- Returns a pointer to the string representation of the UUID specified in the uuid argument.
- status
- Returns the status code from this routine. The status code indicates whether the routine completed successfully, or if not, why not.
Possible status codes and their meanings include:
- uuid_s_ok
- Success.
The uuid_to_string() routine converts a UUID to string UUID.
- Note:
- The RPC run-time system allocates memory for the string returned in string_uuid. To deallocate the memory, the application calls the rpc_string_free() routine.
None.
rpc_string_free()
uuid_from_string().
Please note that the html version of this specification may contain formatting aberrations. The definitive version is available as an electronic publication on CD-ROM from The Open Group.
Contents | Next section | Index |