nandi/vflutter_ffipublic Fork 0
728acaab2594667f4998fc18812e7c1e2e4cc549
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

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

my_application.h · 21 lines · 451 BC Blame HistoryRaw
Add a Mandelbrot example app, and a V kernel worth demonstrating 81540bb nandithebull 15h 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_