GTK4_GG_hack/main.c

15 lines
344 B
C
Raw Normal View History

2024-04-27 16:16:21 +02:00
#include "hot.h"
2024-04-28 08:38:55 +02:00
int main (int argc, char **argv)
2024-04-22 18:50:52 +02:00
{
GtkApplication *app;
int status;
app = gtk_application_new ("org.gtk.example", G_APPLICATION_DEFAULT_FLAGS);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
return status;
}