From: Yoshihiro Yamazaki Date: Fri, 10 Feb 2012 18:42:29 +0000 (+0900) Subject: isButtonTag X-Git-Tag: v0_60~55 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e9c4b235e94a322e50b4a292122ae04cfb8510b8;p=swfed%2Fswfed.git isButtonTag --- diff --git a/src/swf_define.h b/src/swf_define.h index ec409fd..57807be 100644 --- a/src/swf_define.h +++ b/src/swf_define.h @@ -79,6 +79,8 @@ extern void print_hexbin(unsigned char *data, int data_len); #define isBitmapTag(tag) (isBitsJPEGTag(tag) || isBitsLosslessTag(tag)) // DefineShape1,2,3, DefineMorphShape1 #define isShapeTag(tag) (((tag) == 2) || ((tag) == 22) || ((tag) == 32) || ((tag) == 46)) +// DefineButton1,2 +#define isButtonTag(tag) (((tag) == 7) || ((tag) == 34)) // PlaceObject1,2 #define isPlaceTag(tag) (((tag) == 4) || ((tag) == 26)) #define isSpriteTag(tag) ((tag) == 39)