odyssey/src/mm_idle.h

20 lines
273 B
C
Raw Normal View History

2017-04-10 13:03:15 +00:00
#ifndef MM_IDLE_H_
#define MM_IDLE_H_
/*
* machinarium.
*
* cooperative multitasking engine.
*/
typedef struct mm_idle_t mm_idle_t;
typedef int (*mm_idle_callback_t)(mm_idle_t*);
2017-04-10 13:03:15 +00:00
struct mm_idle_t {
mm_idle_callback_t callback;
void *arg;
};
#endif