OSDN Git Service

- shape_record_edge_build 時に delta_x, y の値に応じて x_and_y, x_or_y のフラグを設定し直すよう改造
[swfed/swfed.git] / src / swf_shape_record_end.h
1 /*
2   +----------------------------------------------------------------------+
3   | Author: yoya@awm.jp                                                  |
4   +----------------------------------------------------------------------+
5 */
6
7 #ifndef __SWF_SHAPE_RECORD_END_H__
8 #define __SWF_SHAPE_RECORD_END_H__
9
10 typedef struct swf_shape_record_end_ {
11     unsigned shape_record_type : 1;
12     unsigned end_of_shape : 5;
13 } swf_shape_record_end_t;
14
15 extern int swf_shape_record_end_parse(bitstream_t *bs, swf_shape_record_end_t *color);
16 extern int swf_shape_record_end_build(bitstream_t *bs, swf_shape_record_end_t *color);
17 extern int swf_shape_record_end_print(int indent_deptha);
18
19 #endif /* __SWF_SHAPE_RECORD_END_H__ */