summaryrefslogtreecommitdiff
path: root/include/dom/bootstrap/init_fini.h
blob: 5773af633b64a181b9efae70a60a67b36ce74410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * This file is part of libdom.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef dom_bootstrap_init_fini_h_
#define dom_bootstrap_init_fini_h_

#include <dom/functypes.h>
#include <dom/core/exceptions.h>

/* Initialise the DOM library */
dom_exception dom_initialise(dom_alloc alloc, void *pw);

/* Finalise the DOM library */
dom_exception dom_finalise(void);

#endif