luapage/ui.c

11 lines
241 B
C
Raw Normal View History

2021-05-02 15:07:43 +03:00
#include "ui.h"
struct application_state new_application() {
GtkApplication* gapp;
gapp = gtk_application_new("xyz.hippoz.nettle", G_APPLICATION_FLAGS_NONE);
struct application_state state = {.app = gapp};
return state;
}