[Return to Bookshelf] [Contents] [Previous Section] [Next Section] [Index] [Help]


cma_handle_equal

Compares one handle to another handle.

Syntax

cma_handle_equal(
                 handle1,
                 handle2);
 


Argument Data Type Access

handle1 opaque cma_t_handle read handle2 opaque cma_t_handle read


C Binding

#include 

cma_t_boolean cma_handle_equal ( cma_t_handle *handle1, cma_t_handle *handle2);

Arguments

handle1
The first handle to be compared.
handle2
The second handle to be compared.

Description

This routine compares one handle to another handle. (This routine does not check whether the objects that correspond to the handles currently exist.) The value cma_c_true is returned if the handles have values indicating that they designate the same object. If the values do not designate the same object, the value cma_c_ false is returned.

Exceptions

None



[Return to Bookshelf] [Contents] [Previous Section] [Next Section] [Index] [Help]