summaryrefslogtreecommitdiff
path: root/src/bytecode/bytecode.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-10-23 00:28:20 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-10-23 00:28:20 +0000
commitc8e73871f9006987983fd1010d97b6168c13f6a3 (patch)
tree2fb79379af6643828fb93bd6c855a6e0a5e6dc7b /src/bytecode/bytecode.h
parent5d9507591d83b48be8c76421b602500c196e3785 (diff)
downloadlibcss-c8e73871f9006987983fd1010d97b6168c13f6a3.tar.gz
libcss-c8e73871f9006987983fd1010d97b6168c13f6a3.tar.bz2
Something approximating a parser for clear.
Provide API to create/destroy css_styles and append them to css_rules. svn path=/trunk/libcss/; revision=5625
Diffstat (limited to 'src/bytecode/bytecode.h')
-rw-r--r--src/bytecode/bytecode.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bytecode/bytecode.h b/src/bytecode/bytecode.h
index c8d6215..2db3138 100644
--- a/src/bytecode/bytecode.h
+++ b/src/bytecode/bytecode.h
@@ -99,6 +99,11 @@ typedef enum opcode {
OP_Z_INDEX = 0x053,
} opcode;
+enum flag {
+ FLAG_IMPORTANT = (1<<0),
+ FLAG_INHERIT = (1<<1),
+};
+
typedef enum unit {
UNIT_PX = 0,
UNIT_EX = 1,