[][src]Type Definition ofx_sys::OfxThreadFunctionV1

type OfxThreadFunctionV1 = Option<unsafe extern "C" fn(threadIndex: c_uint, threadMax: c_uint, customArg: *mut c_void)>;

@brief The function type to passed to the multi threading routines

\arg \e threadIndex unique index of this thread, will be between 0 and threadMax \arg \e threadMax to total number of threads executing this function \arg \e customArg the argument passed into multiThread

A function of this type is passed to OfxMultiThreadSuiteV1::multiThread to be launched in multiple threads.