luapage/ui.c
2021-05-02 15:07:43 +03:00

11 lines
No EOL
241 B
C

#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;
}