1 // Copyright 2021 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef CORE_FXCRT_FX_CODEPAGE_FORWARD_H_ 8 #define CORE_FXCRT_FX_CODEPAGE_FORWARD_H_ 9 10 #include <stdint.h> 11 12 // Incomplete definitions of large enumerated type for headers that don't 13 // need the specifics. 14 enum class FX_Charset : uint8_t; 15 enum class FX_CodePage : uint16_t; 16 17 #endif // CORE_FXCRT_FX_CODEPAGE_FORWARD_H_ 18