diff options
| author | Mica White <botahamec@outlook.com> | 2026-02-08 10:10:24 -0500 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2026-02-08 10:10:24 -0500 |
| commit | 1716cf45d0e4e41c7833105dab10542f5ed5dcf1 (patch) | |
| tree | 99ae387cfb3b96c30bbe3fd4cd619dc291505f68 /linux/runner/my_application.h | |
Diffstat (limited to 'linux/runner/my_application.h')
| -rw-r--r-- | linux/runner/my_application.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/linux/runner/my_application.h b/linux/runner/my_application.h new file mode 100644 index 0000000..8f20fb5 --- /dev/null +++ b/linux/runner/my_application.h @@ -0,0 +1,18 @@ +#ifndef FLUTTER_MY_APPLICATION_H_
+#define FLUTTER_MY_APPLICATION_H_
+
+#include <gtk/gtk.h>
+
+G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION,
+ GtkApplication)
+
+/**
+ * my_application_new:
+ *
+ * Creates a new Flutter-based application.
+ *
+ * Returns: a new #MyApplication.
+ */
+MyApplication* my_application_new();
+
+#endif // FLUTTER_MY_APPLICATION_H_
|
