Files
2026-04-06 20:58:42 +02:00

20 lines
370 B
C

#ifndef SALVIUM_WALLET_MY_APPLICATION_H_
#define SALVIUM_WALLET_MY_APPLICATION_H_
#include <gtk/gtk.h>
G_BEGIN_DECLS
typedef struct _MyApplication MyApplication;
typedef struct {
GtkApplicationClass parent_class;
} MyApplicationClass;
GType my_application_get_type();
MyApplication *my_application_new();
G_END_DECLS
#endif // SALVIUM_WALLET_MY_APPLICATION_H_