/* * Copyright 2016 (c) Anna Schumaker. */ #ifndef OCARINA_GUI_BUILDER_H #define OCARINA_GUI_BUILDER_H #include /* Called to initialize the GTK builder. */ void gui_builder_init(const char *); /* Called to deinitialize the GTK builder. */ void gui_builder_deinit(); #ifdef CONFIG_TESTING GtkBuilder *test_get_gui_builder(); #endif /* CONFIG_TESTING */ #endif /* OCARINA_GUI_BUILDER_H */