| 140 | } |
| 141 | |
| 142 | clsparseStatus |
| 143 | clsparseEnableAsync( clsparseControl control, cl_bool async ) |
| 144 | { |
| 145 | if( control == NULL ) |
| 146 | { |
| 147 | return clsparseInvalidControlObject; |
| 148 | } |
| 149 | |
| 150 | control->async = async; |
| 151 | return clsparseSuccess; |
| 152 | } |
| 153 | |
| 154 | clsparseStatus |
| 155 | clsparseEnableExtendedPrecision( clsparseControl control, cl_bool extended_precision ) |
no outgoing calls