diff options
-rw-r--r-- | include/delphi/m_fontservice.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/delphi/m_fontservice.inc b/include/delphi/m_fontservice.inc index 81761f0924..bc4d74fe98 100644 --- a/include/delphi/m_fontservice.inc +++ b/include/delphi/m_fontservice.inc @@ -43,7 +43,7 @@ type PFontSettings_tag = ^TFontSettings_tag;
TFontSettings_tag = record
colour : TCOLORREF;
- size : BYTE;
+ size : ShortInt;
style : BYTE; // see the DBFONTF_* flags above
charset : BYTE;
szFace : array[0..(LF_FACESIZE)-1] of AnsiChar;
@@ -54,7 +54,7 @@ type PFontSettingsW_tag = ^TFontSettingsW_tag;
TFontSettingsW_tag = record
colour : TCOLORREF;
- size : BYTE;
+ size : ShortInt;
style : BYTE; // see the DBFONTF_* flags above
charset : BYTE;
szFace : array[0..(LF_FACESIZE)-1] of WideChar;
@@ -69,9 +69,9 @@ type TFontID_tag = record
cbSize : int;
// [TRANSLATED-BY-CORE] group the font belongs to - this is the 'Font Group' list in the options page
- group : array[0..63] of AnsiChar;
+ group : array[0..63] of AnsiChar;
// [TRANSLATED-BY-CORE] the name of the font setting e.g. 'contacts' in the 'contact list' group
- name : array[0..63] of AnsiChar;
+ name : array[0..63] of AnsiChar;
// the 'module' in the database where the font data is stored
dbSettingsGroup: array[0..31] of AnsiChar;
// prepended to the settings used to store this font's data in the db
@@ -92,9 +92,9 @@ type TFontIDW_tag = record
cbSize : int;
// [TRANSLATED-BY-CORE] group the font belongs to - this is the 'Font Group' list in the options page
- group : array[0..63] of WideChar;
+ group : array[0..63] of WideChar;
// [TRANSLATED-BY-CORE] the name of the font setting e.g. 'contacts' in the 'contact list' group
- name : array[0..63] of WideChar;
+ name : array[0..63] of WideChar;
// the 'module' in the database where the font data is stored
dbSettingsGroup: array[0..31] of AnsiChar;
// prepended to the settings used to store this font's data in the db
|