* Stops the conversion process. * @param h Handle to hb_handle_t. */
| 2065 | * @param h Handle to hb_handle_t. |
| 2066 | */ |
| 2067 | void hb_stop( hb_handle_t * h ) |
| 2068 | { |
| 2069 | h->work_error = HB_ERROR_CANCELED; |
| 2070 | h->work_die = 1; |
| 2071 | hb_resume( h ); |
| 2072 | } |
| 2073 | |
| 2074 | /** |
| 2075 | * Stops the conversion process. |
no test coverage detected