|
SRM Reference Manual
Functions SRM SupportedSRFOperation |
|---|
| extern SRM_Status_Code | ||||
| SRM_SupportedSRFOperation | ||||
| ( | ||||
| const | SRM_SRF_Template_Parameters | * | source_SRF_params_ptr, | (notes) |
| const | SRM_SRF_Template_Parameters | * | dest_SRF_params_ptr, | (notes) |
| SRM_Boolean | * | result_out_ptr | (notes) | |
| ); | ||||
Determines if a coordinate conversion / transformation from *source_SRF_params_ptr to *dest_SRF_params_ptr is supported by the SRM.
| SRM_STAT_CODE_SUCCESS | and *result_out_ptr is set appropriately, if valid parameters were passed in. |
| SRM_STAT_CODE_INVALID_SOURCE_SRF | and *result_out_ptr is set to SRM_FALSE if result_out_ptr isn't NULL, if source_SRF_params_ptr is NULL or *source_SRF_params_ptr is invalid. |
| SRM_STAT_CODE_INVALID_TARGET_SRF | and *result_out_ptr is set to SRM_FALSE if result_out_ptr isn't NULL, if dest_SRF_params_ptr is NULL or *dest_SRF_params_ptr is invalid. |
| SRM_STAT_CODE_INACTIONABLE | and no changes are made, if result_out_ptr is NULL. |
pointer to a structure already filled out
by the user for the source SRF that the user wishes to
convert from
pointer to a structure already filled out
by the user for the destination SRF that the user wishes
to convert to
pointer to a variable in the user's memory space where
the result will be placed
Prev: SRM_SetOutFilePtr.
Next: SRM_ValidAZ2DCoordinate.
Up:Index.
|