Initial commit

This commit is contained in:
Shylie
2024-05-09 15:42:12 -04:00
commit 06e756dd2c
14 changed files with 6233 additions and 0 deletions

19
include/glerminal.h Normal file
View File

@@ -0,0 +1,19 @@
#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