summaryrefslogtreecommitdiff
path: root/test/select-nd.c
blob: 6469267b24d6730d8aaed13ec682ef5d86fe21bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "select-common.c"

static css_error get_libcss_node_data(void *pw, void *n,
		void **libcss_node_data)
{
	node *node = n;
	UNUSED(pw);

	/* Pass any node data back to libcss */
	*libcss_node_data = node->libcss_node_data;

	return CSS_OK;
}