From 67ec0d8aa1afd03b46019376ac0dbbf9f525e1c6 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 31 Jan 2004 21:17:16 +0000 Subject: [PATCH] added glyphnames tag. --- lib/modules/swfdump.c | 7 +++++-- lib/rfxswf.h | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/modules/swfdump.c b/lib/modules/swfdump.c index 62d67b4..d8f8041 100644 --- a/lib/modules/swfdump.c +++ b/lib/modules/swfdump.c @@ -196,8 +196,6 @@ char* swf_TagGetName(TAG*tag) return "IMPORTASSETS"; case ST_ENABLEDEBUGGER: return "ENABLEDEBUGGER"; - case ST_REFLEX: - return "REFLEX"; case ST_DOINITACTION: return "DOINITACTION"; case ST_DEFINEMOVIE: @@ -216,6 +214,11 @@ char* swf_TagGetName(TAG*tag) return "SCRIPTLIMITS"; case ST_SETTABINDEX: return "SETTABINDEX"; + + case ST_REFLEX: + return "REFLEX"; + case ST_GLYPHNAMES: + return "GLYPHNAMES"; } return 0; } diff --git a/lib/rfxswf.h b/lib/rfxswf.h index ea60818..2b53d83 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -345,7 +345,9 @@ SRECT swf_TurnRect(SRECT r, MATRIX* m); #define ST_SCRIPTLIMITS 65 /* version 7- u16 maxrecursedepth, u16 scripttimeoutseconds */ #define ST_SETTABINDEX 66 /* version 7- u16 depth(!), u16 tab order value */ +/* custom tags- only valid for swftools */ #define ST_REFLEX 777 /* to identify generator software */ +#define ST_GLYPHNAMES 778 // Advanced Funtions -- 1.7.10.4