16 lines
179 B
C
16 lines
179 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct {
|
||
|
void *handle;
|
||
|
void *param;
|
||
|
void (*func)(void *param);
|
||
|
} kinc_thread_impl_t;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|