mirror of
https://github.com/tailix/kernel.git
synced 2024-11-27 11:24:34 -05:00
15 lines
189 B
C
15 lines
189 B
C
|
#ifndef KERNELMQ_INCLUDED_MODULE
|
||
|
#define KERNELMQ_INCLUDED_MODULE 1
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef void(*KernelMQ_Module_Function)();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|