SEDRIS Reference Manual
APPENDIX A - LEVEL 0 READ and WRITE API Functions SE CompareObjectIDs |
---|
extern int | ||||
SE_CompareObjectIDs | ||||
( | ||||
const | SE_Object_ID | * | id1_ptr, | (notes) |
const | SE_Object_ID | * | id2_ptr | (notes) |
); |
Compares 2 SE_Object_IDs; the function's signature is compatible with qsort.
-1 | if *id1_ptr < *id2_ptr, or if id1_ptr is NULL and id2_ptr is non-NULL |
0 | if *id1_ptr == *id2_ptr, or if both arguments are NULL |
1 | if *id1_ptr > *id2_ptr, or if id1_ptr is non-NULL and id2_ptr is NULL |
pointer to 1st SE_Object_ID to be compared.
pointer to 2nd SE_Object_ID to be compared.
Prev: SE_CloseTransmittal.
Next: SE_CreateObject.
Up:Index.
|