Function Name: Func Div

Definition

Divides a_ptr's value by b_ptr's value, and stores the result in result_out_ptr.

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 for this operation.

Prototype


extern SE_DRM_STATUS_CODE_ENUM
SE_FuncDiv
(
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 Add. Next: Func Equal. Up:Index.