A terminal input parse helper for the kittens

This commit is contained in:
Kovid Goyal
2018-02-06 17:29:05 +05:30
parent ff2e5b3966
commit fa87ce72a8
3 changed files with 116 additions and 1 deletions

View File

@@ -173,6 +173,7 @@ extern bool init_keys(PyObject *module);
extern bool init_graphics(PyObject *module);
extern bool init_shaders(PyObject *module);
extern bool init_mouse(PyObject *module);
extern bool init_kittens(PyObject *module);
#ifdef __APPLE__
extern int init_CoreText(PyObject *);
extern bool init_cocoa(PyObject *module);
@@ -206,6 +207,7 @@ PyInit_fast_data_types(void) {
if (!init_graphics(m)) return NULL;
if (!init_shaders(m)) return NULL;
if (!init_mouse(m)) return NULL;
if (!init_kittens(m)) return NULL;
#ifdef __APPLE__
if (!init_CoreText(m)) return NULL;
if (!init_cocoa(m)) return NULL;