SEDRIS Reference Manual
APPENDIX A - LEVEL 0 READ and WRITE API Functions SE GetUserData |
---|
extern SE_Status_Code | ||||
SE_GetUserData | ||||
( | ||||
SE_Object | object_in, | (notes) | ||
void | * | * | user_data_out_ptr | (notes) |
); |
Returns the current value of the user data pointer for the given object.
SE_STAT_CODE_SUCCESS | and *user_data_out_ptr is set appropriately, if valid parameters were passed in and all operations succeeded. |
SE_STAT_CODE_NULL_REQUIRED_PARAMETER | and *user_data_out_ptr is left unaltered, if user_data_out_ptr was NULL. |
SE_STAT_CODE_INVALID_OR_NULL_OBJECT | and *user_data_out_ptr is set to NULL, if object_in is not a handle to a valid, active (i.e., unfreed) SEDRIS object. |
SE_STAT_CODE_UNRESOLVED_OBJECT | and *user_data_out_ptr is set to NULL, if object_in is not a currently resolved object (see SE_Object's comments for details on how this condition occurs). |
SE_STAT_CODE_FAILURE | and *user_data_out_ptr is set to NULL, if the API implementation specified does not provide this function in its shared library, and dynamic binding is specified at compile time. |
the SEDRIS object whose user data pointer is desired.
a pointer to a 'void *' variable in the user's memory space where the answer will be stored.
Prev: SE_GetUnresolvedObjectFromPublishedLabel.
Next: SE_HasAggregates.
Up:Index.
|