mkernel 0.0.1
Micro-kernel framework, everything as a module
mkmod.h
Go to the documentation of this file.
1
18#ifndef __MKMOD_H__
19#define __MKMOD_H__
20
21# include <stddef.h> /* NULL */
22
23typedef struct mkmod_api_s {
24 void (*mkmod_function)();
26
27#endif /* __MKMOD_H__ */
struct mkmod_api_s mkmod_api_t
void(* mkmod_function)()
Definition: mkmod.h:24