blob: 9b2d09f3e6d42577dedc87876fd9a98c8dba9bd6 [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2022 The PDFium Authors
Lei Zhang11824a52022-04-01 21:23:20 +00002// 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 Sepez909a33c2023-08-10 19:17:01 +00007namespace pdfium::font_encodings {
Lei Zhang11824a52022-04-01 21:23:20 +00008
9// ISO 32000-1:2008 spec, table D1.
10const char kMacRomanEncoding[] = "MacRomanEncoding";
11const char kWinAnsiEncoding[] = "WinAnsiEncoding";
12const char kPDFDocEncoding[] = "PDFDocEncoding";
13const char kMacExpertEncoding[] = "MacExpertEncoding";
14
Tom Sepez909a33c2023-08-10 19:17:01 +000015} // namespace pdfium::font_encodings