#ifndef GENERIC_H #define GENERIC_H /** * @enum task_result_t * Result of a non-blocking task. */ typedef enum { RES_OK, /**< The task succeeded */ RES_ERROR, /**< The task failed. */ RES_WOULD_BLOCK /**< The task would block, so it was aborted. */ } task_result_t; #endif // GENERIC_H