Better Polling in Setsu

This commit is contained in:
Florian Märkl 2020-06-29 22:28:42 +02:00
commit 092355ff00
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
3 changed files with 94 additions and 62 deletions

View file

@ -18,10 +18,10 @@
#ifndef _SETSU_H
#define _SETSU_H
typedef struct setsu_ctx_t SetsuCtx;
typedef struct setsu_t Setsu;
SetsuCtx *setsu_ctx_new();
void setsu_ctx_free(SetsuCtx *ctx);
void setsu_ctx_run(SetsuCtx *ctx);
Setsu *setsu_new();
void setsu_free(Setsu *setsu);
void setsu_poll(Setsu *setsu);
#endif