17 lines
237 B
C
17 lines
237 B
C
|
#ifndef _LV_GEEK_OS_H_
|
||
|
#define _LV_GEEK_OS_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// GeekOS initialize function
|
||
|
void GeekOS_Init(void);
|
||
|
// GeekOS exit
|
||
|
void GeekOS_Uninit(void);
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|
||
|
|
||
|
#endif
|