summaryrefslogtreecommitdiff
path: root/include/libcss/libcss.h
blob: e3eb0ec4416756bece38eed146b997e55c32281f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * This file is part of LibCSS.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef libcss_h_
#define libcss_h_

#include <libwapcaplet/libwapcaplet.h>

#include <libcss/errors.h>
#include <libcss/types.h>
#include <libcss/functypes.h>
#include <libcss/computed.h>
#include <libcss/properties.h>
#include <libcss/select.h>
#include <libcss/stylesheet.h>

/* Initialise the CSS library for use */
css_error css_initialise(const char *aliases_file,
		css_allocator_fn alloc, void *pw);

/* Clean up after LibCSS */
css_error css_finalise(css_allocator_fn alloc, void *pw);

#endif