~ubuntu-branches/ubuntu/maverick/ming/maverick

« back to all changes in this revision

Viewing changes to src/blocks/font.h

  • Committer: Bazaar Package Importer
  • Author(s): Stuart R. Anderson
  • Date: 2006-06-27 13:42:49 UTC
  • Revision ID: james.westby@ubuntu.com-20060627134249-s4otq30syqzk00g1
Tags: 1:0.3.0-7
* Add ttftofft from upstream CVS, and add missing ming-font packages.
* Update to follow the new Python policy (Closes: #380870: Python transition
  (#2): you are building a private python module !)
* Fix a bug where font properties was being generated incorrectly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include "block.h"
36
36
 
37
37
#define SWF_FONT_HASLAYOUT    (1<<7)
38
 
#define SWF_FONT_UNICODE      (1<<6)
39
 
#define SWF_FONT_SHIFTJIS     (1<<5)
 
38
#define SWF_FONT_SHIFTJIS     (1<<6)
 
39
#define SWF_FONT_UNICODE      (1<<5)
40
40
#define SWF_FONT_ANSI         (1<<4)
41
41
#define SWF_FONT_WIDEOFFSETS  (1<<3)
42
42
#define SWF_FONT_WIDECODES    (1<<2)
43
 
#define SWF_FONT_ISBOLD       (1<<1)
44
 
#define SWF_FONT_ISITALIC     (1<<0)
 
43
#define SWF_FONT_ISITALIC     (1<<1)
 
44
#define SWF_FONT_ISBOLD       (1<<0)
45
45
 
46
46
struct SWFFont_s
47
47
{