X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fmodules%2Fswftools.c;h=5881827156dc6bbf0ea3c4528346d7713e2b23bb;hb=92639540a5db28c4e5cbb87bad85fa4abb886308;hp=822fe382e9309f01f9af5bba5023e75bc18253e4;hpb=b9042754dba87cf5c924274c221b265a3e6c54fd;p=swftools.git diff --git a/lib/modules/swftools.c b/lib/modules/swftools.c index 822fe38..5881827 100644 --- a/lib/modules/swftools.c +++ b/lib/modules/swftools.c @@ -904,6 +904,14 @@ U8 swf_isShapeTag(TAG*tag) return 0; } +U8 swf_isPlaceTag(TAG*tag) +{ + if(tag->id == ST_PLACEOBJECT || + tag->id == ST_PLACEOBJECT2) + return 1; + return 0; +} + U8 swf_isImageTag(TAG*tag) { if(tag->id == ST_DEFINEBITSJPEG ||