Functions | |
EAPI Ecore_Job * | ecore_job_add (void(*func)(void *data), const void *data) |
Add a job to the event queue. | |
EAPI void * | ecore_job_del (Ecore_Job *job) |
Delete a queued job that has not yet been executed. |
EAPI Ecore_Job* ecore_job_add | ( | void(*)(void *data) | func, | |
const void * | data | |||
) |
Add a job to the event queue.
func | The function to call when the job gets handled. | |
data | Data pointer to be passed to the job function when the job is handled. |
NULL
is returned if the job could not be added to the queue.EAPI void* ecore_job_del | ( | Ecore_Job * | job | ) |
Delete a queued job that has not yet been executed.
job | Handle of the job to delete. |