Function Name: Func GT

Definition

Compares the values in a_ptr and b_ptr and reports in result_out_ptr whether a_ptr's value is greater than b_ptr's value.

Returns

SE_DRM_SUCCESS - and *result_out_ptr is set to the appropriate values, if valid parameters were passed in and all operations succeeded.

SE_DRM_NULL_REQUIRED_PARAMETER - and *result_out_ptr is left unchanged, if any of the parameters are NULL.

SE_DRM_FAILURE - and *result_out_ptr is left unchanged, if a_ptr or b_ptr contains an invalid value field.

Prototype


extern SE_DRM_STATUS_CODE_ENUM
SE_FuncGT
(
constSE_LITERAL_FIELDS *a_ptr, (notes)
constSE_LITERAL_FIELDS *b_ptr, (notes)
SE_LITERAL_FIELDS *result_out_ptr (notes)
);

Parameters Notes

a_ptr

 pointer to the first operand.

b_ptr

 pointer to the second operand.

result_out_ptr

 pointer to the result.

Prev: Func Equal. Next: Func GTE. Up:Index.