From 74e73a3b8b5ab3effd8e3d94c10463907d4c4ea9 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 12 Jan 2017 07:58:33 +0000 Subject: make local history use system colours --- include/netsurf/types.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 include/netsurf/types.h (limited to 'include') 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 + * + * 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 . + */ + +/** + * \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 -- cgit v1.2.3