summaryrefslogtreecommitdiff
path: root/src/layout.h
blob: 6e8f4c9c69902d2f35f10f33a08841dcc1665b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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