21 lines
494 B
C
21 lines
494 B
C
|
|
// Copyright 2018 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_STREAM_DICT_COMMON_H_
|
||
|
|
#define CONSTANTS_STREAM_DICT_COMMON_H_
|
||
|
|
|
||
|
|
namespace pdfium {
|
||
|
|
namespace stream {
|
||
|
|
|
||
|
|
extern const char kLength[];
|
||
|
|
extern const char kFilter[];
|
||
|
|
extern const char kDecodeParms[];
|
||
|
|
extern const char kF[];
|
||
|
|
extern const char kDL[];
|
||
|
|
|
||
|
|
} // namespace stream
|
||
|
|
} // namespace pdfium
|
||
|
|
|
||
|
|
#endif // CONSTANTS_STREAM_DICT_COMMON_H_
|