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:
5a85514
)
changed codes and gid in SWFFONT to glyph2ascii and ascii2glyph.
author
kramm
<kramm>
Mon, 5 Nov 2001 13:59:28 +0000
(13:59 +0000)
committer
kramm
<kramm>
Mon, 5 Nov 2001 13:59:28 +0000
(13:59 +0000)
lib/rfxswf.h
patch
|
blob
|
history
diff --git
a/lib/rfxswf.h
b/lib/rfxswf.h
index
7dbe091
..
724134d
100644
(file)
--- a/
lib/rfxswf.h
+++ b/
lib/rfxswf.h
@@
-319,7
+319,6
@@
typedef struct _SWFLAYOUT
typedef struct
{ S16 advance;
- U16 gid; // Glyph-ID after DefineFont
SHAPE * shape;
} SWFGLYPH;
@@
-329,8
+328,10
@@
typedef struct _SWFFONT
U8 * name;
SWFLAYOUT * layout;
U16 numchars;
+ U16 maxascii; // highest mapped ascii value
U8 flags; // bold/italic/unicode/ansi ...
- U16 * codes;
+ U16 * glyph2ascii;
+ int * ascii2glyph;
SWFGLYPH * glyph;
} SWFFONT, * LPSWFFONT;