19 lines
237 B
C
19 lines
237 B
C
|
#ifndef GLERMINAL_H
|
||
|
#define GLERMINAL_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
typedef void (*glerminal_main_cb)();
|
||
|
|
||
|
void glerminal_run(glerminal_main_cb main);
|
||
|
|
||
|
void glerminal_flush();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif//GLERMINAL_H
|