summaryrefslogtreecommitdiff
path: root/frontends/fltk/bitmap.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2021-02-26 13:33:08 +0000
committerVincent Sanders <vince@kyllikki.org>2021-03-23 22:12:21 +0000
commit28ecbf82ed3024f51be4c87928fd91bacfc15cbc (patch)
tree8c6fbd3a4c8ae1d94c700958a4883cb3d7293d0c /frontends/fltk/bitmap.h
parent847d5680613cb578ba4a548960480363a3230174 (diff)
downloadnetsurf-28ecbf82ed3024f51be4c87928fd91bacfc15cbc.tar.gz
netsurf-28ecbf82ed3024f51be4c87928fd91bacfc15cbc.tar.bz2
Initial minimal FLTK toolkit implementation
Diffstat (limited to 'frontends/fltk/bitmap.h')
-rw-r--r--frontends/fltk/bitmap.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/frontends/fltk/bitmap.h b/frontends/fltk/bitmap.h
new file mode 100644
index 000000000..e0f01a6f6
--- /dev/null
+++ b/frontends/fltk/bitmap.h
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2021 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NETSURF_FLTK_BITMAP_H
+#define NETSURF_FLTK_BITMAP_H 1
+
+/**
+ * fltk bitmap operations table
+ */
+extern struct gui_bitmap_table *nsfltk_bitmap_table;
+
+#endif