summaryrefslogtreecommitdiff
path: root/src/bytecode/bytecode.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-03 16:18:26 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-03 16:18:26 +0000
commitf532be1b26d0a60d47c467254c78b9a4989a5af2 (patch)
treef2633471f452ceddb57aca12d5dc1954c80f160a /src/bytecode/bytecode.h
parenta73889a4f36cb45785225c411d5091bf7d1ab4ce (diff)
downloadlibcss-f532be1b26d0a60d47c467254c78b9a4989a5af2.tar.gz
libcss-f532be1b26d0a60d47c467254c78b9a4989a5af2.tar.bz2
s/opcode/opcode_t/
svn path=/trunk/libcss/; revision=9020
Diffstat (limited to 'src/bytecode/bytecode.h')
-rw-r--r--src/bytecode/bytecode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bytecode/bytecode.h b/src/bytecode/bytecode.h
index 9872d46..f378585 100644
--- a/src/bytecode/bytecode.h
+++ b/src/bytecode/bytecode.h
@@ -14,7 +14,7 @@
#include <libcss/types.h>
#include <libcss/properties.h>
-typedef enum css_properties_e opcode;
+typedef enum css_properties_e opcode_t;
enum flag {
FLAG_IMPORTANT = (1<<0),
@@ -53,12 +53,12 @@ typedef enum shape {
SHAPE_RECT = 0
} shape;
-static inline uint32_t buildOPV(opcode opcode, uint8_t flags, uint16_t value)
+static inline uint32_t buildOPV(opcode_t opcode, uint8_t flags, uint16_t value)
{
return (opcode & 0x3ff) | (flags << 10) | ((value & 0x3fff) << 18);
}
-static inline opcode getOpcode(uint32_t OPV)
+static inline opcode_t getOpcode(uint32_t OPV)
{
return (OPV & 0x3ff);
}