nandi/frqpublic Fork 0
ce824252aa511f0e1d68bf8fbf6be9419ab4dfd1
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

my_application.h · 21 lines · 451 BC Blame HistoryRaw
Build the APK, out of ClojureDart and Flutter e2b0e6b nandi 7d ago1#ifndef FLUTTER_MY_APPLICATION_H_
2#define FLUTTER_MY_APPLICATION_H_
3
4#include <gtk/gtk.h>
5
6G_DECLARE_FINAL_TYPE(MyApplication,
7 my_application,
8 MY,
9 APPLICATION,
10 GtkApplication)
11
12/**
13 * my_application_new:
14 *
15 * Creates a new Flutter-based application.
16 *
17 * Returns: a new #MyApplication.
18 */
19MyApplication* my_application_new();
20
21#endif // FLUTTER_MY_APPLICATION_H_