The SEDRIS Data Representation Model
APPENDIX D - Functions SE SingleValueToLongFloat |
---|
extern SE_DRM_Status_Code | ||||
SE_SingleValueToLongFloat | ||||
( | ||||
const | SE_Single_Value | * | value_ptr, | 1 |
EDCS_Long_Float | * | result_out_ptr | 2 | |
); |
Converts an SE_Single_Value to an EDCS_Long_Float.
When converting:
boolean: FALSE is 0, TRUE is 1
string: the string is treated as 0
all others: normal mathematical rules apply
SE_DRM_STAT_CODE_SUCCESS | and *result_out_ptr is set appropriately, if valid parameters were passed in. |
SE_DRM_STAT_CODE_NULL_REQUIRED_PARAMETER | and no changes are made, if any parameter is NULL. |
SE_DRM_STAT_CODE_FAILURE | and *result_out_ptr is set to zero (0), if *value_ptr is invalid. |
1 pointer to the SE_Single_Value to be converted
2 pointer to the EDCS_Long_Float where the result will be stored
Prev: SE_SingleValueToInteger.
Next: SE_SingleValueToString.
Up:Index.
|