SEDRIS Reference Manual
APPENDIX A - LEVEL 0 READ and WRITE API Functions SE ObjectIsPublished |
---|
extern SE_Status_Code | |||
SE_ObjectIsPublished | |||
( | |||
SE_Object | object_in, | (notes) | |
SE_Boolean | * | result_out_ptr | (notes) |
); |
Given an SE_Object, determines whether the object has been published.
SE_STAT_CODE_SUCCESS | and *result_out_ptr is set appropriately, if valid parameters were passed in. |
SE_STAT_CODE_NULL_REQUIRED_PARAMETER | and *result_out_ptr is left unaltered, if result_out_ptr is NULL. |
SE_STAT_CODE_INVALID_OR_NULL_OBJECT | and *result_out_ptr is set to SE_FALSE, if object_in is not a handle to a valid SEDRIS object. |
SE_STAT_CODE_UNRESOLVED_OBJECT | and *result_out_ptr is set to SE_FALSE, if object passed in is not a resolved object. |
SE_STAT_CODE_FAILURE | and *result_out_ptr is set to SE_FALSE, if the API implementation specified does not provide this function in its shared library, and dynamic binding is specified at compile time. |
the object being queried, which must be resolved.
a pointer to an SE_Boolean variable in the user's memory space in which the result of the query will be stored.
Prev: SE_ObjectIDsSupported.
Next: SE_ObjectIsResolved.
Up:Index.
|