summaryrefslogtreecommitdiff
path: root/src/select/computed.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-07 02:08:15 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-07 02:08:15 +0000
commit3f5ac6a18b13034f14c7f9261f57887a52e454e3 (patch)
treea00df47421276213a980aa57612a643bbca3d607 /src/select/computed.h
parent9ed557ba18facc04fd9d9b35a5dac15844f161c3 (diff)
downloadlibcss-3f5ac6a18b13034f14c7f9261f57887a52e454e3.tar.gz
libcss-3f5ac6a18b13034f14c7f9261f57887a52e454e3.tar.bz2
More API changes.
Make css_computed_style_create() private. Implement css_computed_style_[create,destroy](). svn path=/trunk/libcss/; revision=6389
Diffstat (limited to 'src/select/computed.h')
-rw-r--r--src/select/computed.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/select/computed.h b/src/select/computed.h
new file mode 100644
index 0000000..eddc7c0
--- /dev/null
+++ b/src/select/computed.h
@@ -0,0 +1,16 @@
+/*
+ * This file is part of LibCSS
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
+ */
+
+#ifndef css_select_computed_h_
+#define css_select_computed_h_
+
+#include <libcss/computed.h>
+
+css_error css_computed_style_create(css_alloc alloc, void *pw,
+ css_computed_style **result);
+
+#endif