]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/BrotliCustomDecompressLib/common/dictionary.h
MdeModulePkg BrotliLib: Rename function with the specific lib name
[mirror_edk2.git] / MdeModulePkg / Library / BrotliCustomDecompressLib / common / dictionary.h
CommitLineData
36ff6d80
SB
1/* Copyright 2013 Google Inc. All Rights Reserved.\r
2\r
3 Distributed under MIT license.\r
4 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\r
5*/\r
6\r
7/* Collection of static dictionary words. */\r
8\r
9#ifndef BROTLI_COMMON_DICTIONARY_H_\r
10#define BROTLI_COMMON_DICTIONARY_H_\r
11\r
12#include "./types.h"\r
13\r
14#if defined(__cplusplus) || defined(c_plusplus)\r
15extern "C" {\r
16#endif\r
17\r
18extern const uint8_t kBrotliDictionary[122784];\r
19extern const uint32_t kBrotliDictionaryOffsetsByLength[25];\r
20extern const uint8_t kBrotliDictionarySizeBitsByLength[25];\r
21\r
22#define kBrotliMinDictionaryWordLength 4\r
23#define kBrotliMaxDictionaryWordLength 24\r
24\r
25#if defined(__cplusplus) || defined(c_plusplus)\r
26} /* extern "C" */\r
27#endif\r
28\r
29#endif /* BROTLI_COMMON_DICTIONARY_H_ */\r