git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8594c65
)
added tag types {EXPORT, IMPORT}ASSETS, ENABLEDEBUGGER
author
kramm
<kramm>
Mon, 5 Nov 2001 08:43:58 +0000
(08:43 +0000)
committer
kramm
<kramm>
Mon, 5 Nov 2001 08:43:58 +0000
(08:43 +0000)
lib/modules/swfdump.c
patch
|
blob
|
history
lib/rfxswf.h
patch
|
blob
|
history
diff --git
a/lib/modules/swfdump.c
b/lib/modules/swfdump.c
index
f2bddcc
..
ee187f9
100644
(file)
--- a/
lib/modules/swfdump.c
+++ b/
lib/modules/swfdump.c
@@
-127,6
+127,12
@@
char* swf_TagGetName(TAG*tag)
return "GENERATOR3";
case ST_EXTERNALFONT:
return "EXTERNALFONT";
+ case ST_EXPORTASSETS:
+ return "EXPORTASSETS";
+ case ST_IMPORTASSETS:
+ return "IMPORTASSETS";
+ case ST_ENABLEDEBUGGER:
+ return "ENABLEDEBUGGER";
case ST_REFLEX:
return "REFLEX";
}
diff --git
a/lib/rfxswf.h
b/lib/rfxswf.h
index
db5a79e
..
d52192a
100644
(file)
--- a/
lib/rfxswf.h
+++ b/
lib/rfxswf.h
@@
-222,6
+222,9
@@
int swf_SetRGBA(TAG * t,RGBA * col);
#define ST_TEMPLATECOMMAND 49
#define ST_GENERATOR3 51
#define ST_EXTERNALFONT 52
+#define ST_EXPORTASSETS 56
+#define ST_IMPORTASSETS 57
+#define ST_ENABLEDEBUGGER 58
#define ST_REFLEX 777 /* to identify generator software */