summaryrefslogtreecommitdiff
path: root/include/netsurf
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-01-12 07:58:33 +0000
committerVincent Sanders <vince@kyllikki.org>2017-01-12 08:00:02 +0000
commit74e73a3b8b5ab3effd8e3d94c10463907d4c4ea9 (patch)
tree98fefc2e95a37cf408be0fcb34b5266fa3bc2036 /include/netsurf
parent9e037376276aaa042b529499f1978766b9535f7b (diff)
downloadnetsurf-74e73a3b8b5ab3effd8e3d94c10463907d4c4ea9.tar.gz
netsurf-74e73a3b8b5ab3effd8e3d94c10463907d4c4ea9.tar.bz2
make local history use system colours
Diffstat (limited to 'include/netsurf')
-rw-r--r--include/netsurf/types.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/netsurf/types.h b/include/netsurf/types.h
new file mode 100644
index 000000000..a68013b9f
--- /dev/null
+++ b/include/netsurf/types.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2017 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/>.
+ */
+
+/**
+ * \file
+ *
+ * NetSurf types.
+ *
+ * These are convenience types used throughout the browser.
+ */
+
+#ifndef NETSURF_TYPES_H
+#define NETSURF_TYPES_H
+
+/**
+ * Colour type: XBGR
+ */
+typedef uint32_t colour;
+
+#endif