18 lines
281 B
C
18 lines
281 B
C
|
/*
|
||
|
* 4coder_async_tasks.cpp - Types for the custom layer asynchronous task system.
|
||
|
*/
|
||
|
|
||
|
// TOP
|
||
|
|
||
|
#if !defined(FCODER_ASYNC_TASKS_H)
|
||
|
#define FCODER_ASYNC_TASKS_H
|
||
|
|
||
|
typedef void Async_Task_Function_Type(Application_Links *app, Data data);
|
||
|
|
||
|
typedef u64 Async_Task;
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// BOTTOM
|
||
|
|