diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
commit | 6c684df061a3c09da94834c2d9008eb90811b242 (patch) | |
tree | c34ae59f2fcbeb19d86c170e569ba645921bc5d7 /src/xine-engine/osd.c | |
parent | 92647a9d5a2e49de058a1169b465685ac9d9bdcb (diff) | |
download | xine-lib-nopadding_no_abi_change.tar.gz xine-lib-nopadding_no_abi_change.tar.bz2 |
Reorder and pack the structures that are defined inside compilation units instead of headers (and thus are not part of public ABI).nopadding_no_abi_change
Diffstat (limited to 'src/xine-engine/osd.c')
-rw-r--r-- | src/xine-engine/osd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/osd.c b/src/xine-engine/osd.c index b33d81f6e..b68b3b5c2 100644 --- a/src/xine-engine/osd.c +++ b/src/xine-engine/osd.c @@ -109,21 +109,21 @@ #endif typedef struct osd_fontchar_s { + uint8_t *bmp; uint16_t code; uint16_t width; uint16_t height; - uint8_t *bmp; } osd_fontchar_t; struct osd_font_s { char name[40]; char *filename; + osd_fontchar_t *fontchar; + osd_font_t *next; uint16_t version; uint16_t size; uint16_t num_fontchars; - osd_fontchar_t *fontchar; - osd_font_t *next; - int loaded; + uint16_t loaded; }; #ifdef HAVE_FT2 |