K. Moon | 832a694 | 2022-10-31 20:11:31 +0000 | [diff] [blame] | 1 | // Copyright 2022 The PDFium Authors |
Lei Zhang | 11824a5 | 2022-04-01 21:23:20 +0000 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "constants/font_encodings.h" |
| 6 | |
Tom Sepez | 909a33c | 2023-08-10 19:17:01 +0000 | [diff] [blame] | 7 | namespace pdfium::font_encodings { |
Lei Zhang | 11824a5 | 2022-04-01 21:23:20 +0000 | [diff] [blame] | 8 | |
| 9 | // ISO 32000-1:2008 spec, table D1. |
| 10 | const char kMacRomanEncoding[] = "MacRomanEncoding"; |
| 11 | const char kWinAnsiEncoding[] = "WinAnsiEncoding"; |
| 12 | const char kPDFDocEncoding[] = "PDFDocEncoding"; |
| 13 | const char kMacExpertEncoding[] = "MacExpertEncoding"; |
| 14 | |
Tom Sepez | 909a33c | 2023-08-10 19:17:01 +0000 | [diff] [blame] | 15 | } // namespace pdfium::font_encodings |