OLD | NEW |
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 /* ***** BEGIN LICENSE BLOCK ***** | 2 /* ***** BEGIN LICENSE BLOCK ***** |
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
4 * | 4 * |
5 * The contents of this file are subject to the Mozilla Public License Version | 5 * The contents of this file are subject to the Mozilla Public License Version |
6 * 1.1 (the "License"); you may not use this file except in compliance with | 6 * 1.1 (the "License"); you may not use this file except in compliance with |
7 * the License. You may obtain a copy of the License at | 7 * the License. You may obtain a copy of the License at |
8 * http://www.mozilla.org/MPL/ | 8 * http://www.mozilla.org/MPL/ |
9 * | 9 * |
10 * Software distributed under the License is distributed on an "AS IS" basis, | 10 * Software distributed under the License is distributed on an "AS IS" basis, |
(...skipping 56 matching lines...) Loading... |
67 #define compress MOZ_Z_compress | 67 #define compress MOZ_Z_compress |
68 #define compress2 MOZ_Z_compress2 | 68 #define compress2 MOZ_Z_compress2 |
69 #define compressBound MOZ_Z_compressBound | 69 #define compressBound MOZ_Z_compressBound |
70 #define uncompress MOZ_Z_uncompress | 70 #define uncompress MOZ_Z_uncompress |
71 #define gzopen MOZ_Z_gzopen | 71 #define gzopen MOZ_Z_gzopen |
72 #define gzdopen MOZ_Z_gzdopen | 72 #define gzdopen MOZ_Z_gzdopen |
73 #define gzsetparams MOZ_Z_gzsetparams | 73 #define gzsetparams MOZ_Z_gzsetparams |
74 #define gzread MOZ_Z_gzread | 74 #define gzread MOZ_Z_gzread |
75 #define gzwrite MOZ_Z_gzwrite | 75 #define gzwrite MOZ_Z_gzwrite |
76 #define gzprintf MOZ_Z_gzprintf | 76 #define gzprintf MOZ_Z_gzprintf |
| 77 #define gzvprintf MOZ_Z_gzvprintf |
77 #define gzputs MOZ_Z_gzputs | 78 #define gzputs MOZ_Z_gzputs |
78 #define gzgets MOZ_Z_gzgets | 79 #define gzgets MOZ_Z_gzgets |
79 #define gzputc MOZ_Z_gzputc | 80 #define gzputc MOZ_Z_gzputc |
80 #define gzgetc MOZ_Z_gzgetc | 81 #define gzgetc MOZ_Z_gzgetc |
| 82 #define gzgetc_ MOZ_Z_gzgetc_ |
81 #define gzungetc MOZ_Z_gzungetc | 83 #define gzungetc MOZ_Z_gzungetc |
82 #define gzflush MOZ_Z_gzflush | 84 #define gzflush MOZ_Z_gzflush |
83 #define gzseek MOZ_Z_gzseek | 85 #define gzseek MOZ_Z_gzseek |
84 #define gzrewind MOZ_Z_gzrewind | 86 #define gzrewind MOZ_Z_gzrewind |
85 #define gztell MOZ_Z_gztell | 87 #define gztell MOZ_Z_gztell |
86 #define gzeof MOZ_Z_gzeof | 88 #define gzeof MOZ_Z_gzeof |
87 #define gzclose MOZ_Z_gzclose | 89 #define gzclose MOZ_Z_gzclose |
88 #define gzerror MOZ_Z_gzerror | 90 #define gzerror MOZ_Z_gzerror |
89 #define gzclearerr MOZ_Z_gzclearerr | 91 #define gzclearerr MOZ_Z_gzclearerr |
90 #define adler32 MOZ_Z_adler32 | 92 #define adler32 MOZ_Z_adler32 |
(...skipping 68 matching lines...) Loading... |
159 #define gz_header_s MOZ_Z_gz_header_s | 161 #define gz_header_s MOZ_Z_gz_header_s |
160 #define internal_state MOZ_Z_internal_state | 162 #define internal_state MOZ_Z_internal_state |
161 | 163 |
162 /* Mangle Byte types except on Mac. */ | 164 /* Mangle Byte types except on Mac. */ |
163 #if !defined(__MACTYPES__) | 165 #if !defined(__MACTYPES__) |
164 #define Byte MOZ_Z_Byte | 166 #define Byte MOZ_Z_Byte |
165 #define Bytef MOZ_Z_Bytef | 167 #define Bytef MOZ_Z_Bytef |
166 #endif | 168 #endif |
167 | 169 |
168 #endif | 170 #endif |
OLD | NEW |