summaryrefslogtreecommitdiff
path: root/include/dom/core/nodelist.h
blob: 2aad3135ab780bb053f6c4b78dc5b0d99f10f306 (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
/*
 * 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;

typedef struct dom_nodelist 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);

#define dom_nodelist_item(l, i, n) _dom_nodelist_item((dom_nodelist *) (l), \
		(unsigned long) (i), (dom_node **) (n))

#endif