---------------------------------------------------------------------- * Callback argument support functions * ---------------------------------------------------------------------- */
| 751 | * Callback argument support functions |
| 752 | * ---------------------------------------------------------------------- */ |
| 753 | int ply_get_argument_element(p_ply_argument argument, |
| 754 | p_ply_element *element, long *instance_index) { |
| 755 | assert(argument); |
| 756 | if (!argument) return 0; |
| 757 | if (element) *element = argument->element; |
| 758 | if (instance_index) *instance_index = argument->instance_index; |
| 759 | return 1; |
| 760 | } |
| 761 | |
| 762 | int ply_get_argument_property(p_ply_argument argument, |
| 763 | p_ply_property *property, long *length, long *value_index) { |
no outgoing calls
no test coverage detected