mkernel 0.0.2
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 "module.h"
22# include <stddef.h> /* NULL */
23
24typedef struct mkmod_api_s {
25 void (*mkmod_function)();
27
28#endif /* __MKMOD_H__ */
struct mkmod_api_s mkmod_api_t
Internal ABI shared by all modules with modmgr.
void(* mkmod_function)()
Definition: mkmod.h:25