20 lines
511 B
C++
20 lines
511 B
C++
// Copyright 2022 The PDFium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CONSTANTS_FONT_ENCODINGS_H_
|
|
#define CONSTANTS_FONT_ENCODINGS_H_
|
|
|
|
namespace pdfium {
|
|
namespace font_encodings {
|
|
|
|
extern const char kMacRomanEncoding[];
|
|
extern const char kWinAnsiEncoding[];
|
|
extern const char kPDFDocEncoding[];
|
|
extern const char kMacExpertEncoding[];
|
|
|
|
} // namespace font_encodings
|
|
} // namespace pdfium
|
|
|
|
#endif // CONSTANTS_FONT_ENCODINGS_H_
|