diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-02-24 11:23:20 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-02-24 11:23:20 -0800 |
commit | 86b5c31dc7c98af877a5e8952c5b55b9ea611f3c (patch) | |
tree | ab1c624008578cd4fcb70b30ffab091375769d95 /xfa/src/fgas/include/fx_ucd.h | |
parent | 4ca48d1b10998f6c77683f184b8c8c53c7121b9b (diff) | |
download | pdfium-86b5c31dc7c98af877a5e8952c5b55b9ea611f3c.tar.xz |
Moar _CAPS naming, part 4
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1731483004 .
Diffstat (limited to 'xfa/src/fgas/include/fx_ucd.h')
-rw-r--r-- | xfa/src/fgas/include/fx_ucd.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/xfa/src/fgas/include/fx_ucd.h b/xfa/src/fgas/include/fx_ucd.h index 51a0a1f2fc..ae1c882e94 100644 --- a/xfa/src/fgas/include/fx_ucd.h +++ b/xfa/src/fgas/include/fx_ucd.h @@ -13,12 +13,13 @@ #define FX_JAPCHARPROPERTYEX_Top 0x10 #define FX_JAPCHARPROPERTYEX_Middle 0x20 #define FX_JAPCHARPROPERTYEX_Bottom 0x30 -typedef struct _FX_JAPCHARPROPERTYEX { + +struct FX_JAPCHARPROPERTYEX { FX_WCHAR wChar; uint8_t uAlign; -} FX_JAPCHARPROPERTYEX, *FX_LPJAPCHARPROPERTYEX; -typedef FX_JAPCHARPROPERTYEX const* FX_LPCJAPCHARPROPERTYEX; -FX_LPCJAPCHARPROPERTYEX FX_GetJapCharPropertyEx(FX_WCHAR wch); +}; + +const FX_JAPCHARPROPERTYEX* FX_GetJapCharPropertyEx(FX_WCHAR wch); typedef FX_BOOL (*FX_AdjustCharDisplayPos)(FX_WCHAR wch, FX_BOOL bMBCSCode, IFX_Font* pFont, |