OSDN Git Service

delete png_set_gAMA
[swfed/swfed.git] / src / swf_shape_with_style.h
1 /*
2   +----------------------------------------------------------------------+
3   | Author: yoya@awm.jp                                                  |
4   +----------------------------------------------------------------------+
5 */
6
7 #ifndef __SWF_SHAPE_WITH_STYLE_H__
8 #define __SWF_SHAPE_WITH_STYLE_H__
9
10 #include "swf_tag.h"
11 #include "swf_styles.h"
12 #include "swf_shape_record.h"
13
14 typedef struct swf_shape_with_style_ {
15     swf_styles_t       styles;
16     swf_shape_record_t shape_records;
17 } swf_shape_with_style_t;
18
19 extern int swf_shape_with_style_parse(bitstream_t *bs,
20                                       swf_shape_with_style_t *shape_with_style,
21                                       swf_tag_t *tag);
22 extern int swf_shape_with_style_build(bitstream_t *bs,
23                                       swf_shape_with_style_t *shape_with_style,
24                                       swf_tag_t *tag);
25 extern int swf_shape_with_style_print(swf_shape_with_style_t *shape_with_style,
26                                       int indent_depth,
27                                       swf_tag_t *tag);
28 extern int swf_shape_with_style_delete(swf_shape_with_style_t *shape_with_style);
29
30 #endif /* __SWF_SHAPE_WITH_STYLE_H__ */