* Removes a job from the job list. * @param h Handle to hb_handle_t. * @param job Handle to hb_job_t. */
| 1979 | * @param job Handle to hb_job_t. |
| 1980 | */ |
| 1981 | void hb_rem( hb_handle_t * h, hb_job_t * job ) |
| 1982 | { |
| 1983 | hb_list_rem( h->jobs, job ); |
| 1984 | } |
| 1985 | |
| 1986 | /** |
| 1987 | * Starts the conversion process. |
no test coverage detected