diff options
author | Nick Clifton <nickc@redhat.com> | 2002-04-15 14:12:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-04-15 14:12:41 +0000 |
commit | 45b99827916a4cbbf1b721ff346e69255550899b (patch) | |
tree | cfa480422fb9c85db2bfca51b5cb3d3ebdc1a2c7 /binutils/windres.h | |
parent | 272423870a26d8a7cabfc48b10b6f2b8c365e7b5 (diff) | |
download | gdb-45b99827916a4cbbf1b721ff346e69255550899b.zip gdb-45b99827916a4cbbf1b721ff346e69255550899b.tar.gz gdb-45b99827916a4cbbf1b721ff346e69255550899b.tar.bz2 |
Allow two to five parameter in FONT statement of DIALOGEX resources.
Diffstat (limited to 'binutils/windres.h')
-rw-r--r-- | binutils/windres.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/binutils/windres.h b/binutils/windres.h index 157d751..64b6050 100644 --- a/binutils/windres.h +++ b/binutils/windres.h @@ -1,5 +1,5 @@ /* windres.h -- header file for windres program. - Copyright 1997, 1998, 2000 Free Software Foundation, Inc. + Copyright 1997, 1998, 2000, 2002 Free Software Foundation, Inc. Written by Ian Lance Taylor, Cygnus Support. This file is part of GNU Binutils. @@ -315,7 +315,9 @@ struct dialog_ex /* Font weight. */ unsigned short weight; /* Whether the font is italic. */ - unsigned short italic; + unsigned char italic; + /* Character set. */ + unsigned char charset; }; /* Window style flags, from the winsup Defines.h header file. These @@ -519,7 +521,7 @@ struct fontdir short index; /* Length of font information. */ unsigned long length; - /* Font information. */ + /* Font information. */ const unsigned char *data; }; |