gout.h (332B)
1 #ifndef GOUT_GOUT_H_ 2 #define GOUT_GOUT_H_ 3 4 typedef struct GoutOptions GoutOptions; 5 GoutOptions* gout_options_create(int argc, const char* argv[]); 6 void gout_options_free(GoutOptions* options); 7 8 void gout_init(const GoutOptions* options); 9 void gout_run(const GoutOptions* options); 10 void gout_shutdown(void); 11 12 #endif // GOUT_GOUT_H_