1 // Copyright 2023 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CORE_FXGE_FX_FONTENCODING_H_ 6 #define CORE_FXGE_FX_FONTENCODING_H_ 7 8 #include <stdint.h> 9 10 namespace fxge { 11 12 enum class FontEncoding : uint32_t { 13 kAdobeCustom, 14 kAdobeExpert, 15 kAdobeStandard, 16 kAppleRoman, 17 kBig5, 18 kGB2312, 19 kJohab, 20 kLatin1, 21 kNone, 22 kOldLatin2, 23 kSjis, 24 kSymbol, 25 kUnicode, 26 kWansung, 27 }; 28 29 } // namespace fxge 30 31 #endif // CORE_FXGE_FX_FONTENCODING_H_ 32