summaryrefslogtreecommitdiff
path: root/src/layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/layout.h')
-rw-r--r--src/layout.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/layout.h b/src/layout.h
new file mode 100644
index 0000000..5b43bc6
--- /dev/null
+++ b/src/layout.h
@@ -0,0 +1,20 @@
+/*
+ * This file is part of LibNSLayout
+ * Licensed under the ISC License, http://opensource.org/licenses/ISC
+ * Copyright 2015 Michael Drake <tlsa@netsurf-browser.org>
+ */
+
+#ifndef nslayout_layout_h_
+#define nslayout_layout_h_
+
+#include <libnslayout/nslayout.h>
+
+struct nslayout_layout {
+ dom_document *doc;
+ css_select_ctx *css_ctx;
+ css_media_type *media;
+ nslayout_callback *cb;
+ void *pw;
+};
+
+#endif