summaryrefslogtreecommitdiff
path: root/include/dom/core/nodelist.h
blob: e350c5b09ae5ee2b12420f851ccfe3aa564e203f (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
/*
 * 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_core_nodelist_h_
#define dom_core_nodelist_h_

#include <dom/core/exceptions.h>

struct dom_node;
struct dom_nodelist;

void dom_nodelist_ref(struct dom_nodelist *list);
void dom_nodelist_unref(struct dom_nodelist *list);

dom_exception dom_nodelist_get_length(struct dom_nodelist *list,
		unsigned long *length);
dom_exception dom_nodelist_item(struct dom_nodelist *list,
		unsigned long index, struct dom_node **node);

#endif