Table of Contents

RTI_CreateGUID Function

Description

This function will create a guaranteed unique identifier.

Syntax

retval = RTI_CreateGUID()

Returns

A unique identifier.

Remarks

The RTI_CreateGUID function is a front-end for the CoCreateGuid API call in the OLE32.dll. MSDN Link.

Example

* The following example will create 3 unique identifiers.

Declare function RTI_CreateGUID

id1 = RTI_CreateGUID()

id2 = RTI_CreateGUID()

id3 = RTI_CreateGUID()