20 lines
370 B
C
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_
|