[ Bottom of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]

Technical Reference: Communications, Volume 1

uuid_$decode Library Routine (NCS)

Purpose

Converts a character-string representation of a Universal Unique Identifier (UUID) into a UUID.

Syntax


void uuid_$decode ( uuid_string, uuid, status)
char *uuid_string;
uuid_$t *uuid;
status_$t *status;

Description

The uuid_$decode routine returns the UUID corresponding to a valid character-string representation of a UUID.

Parameters

Input

uuid_string Points to the character-string representation of a UUID in the form uuid_$string_t.

Output

uuid Points to the UUID that corresponds to the character string represented in the uuid_string parameter.
status Points to the completion status.

Examples

The following call returns as my_uuid the UUID corresponding to the character-string representation in my_uuid_rep:

uuid_$decode (my_uuid_rep, &my_uuid, &status);

Related Information

Remote Procedure Call (RPC) Runtime Library (NCS) in AIX 5L Version 5.2 Communications Programming Concepts.

[ Top of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]