| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * The request ids for read-related messages to send to the C extension. | 6 * The request ids for read-related messages to send to the C extension. |
| 7 * |
| 8 * These ids are followed by the entry ids. |
| 7 */ | 9 */ |
| 8 #library("read_request"); | 10 #library("read_request"); |
| 9 | 11 |
| 10 final int NEW = 0; | 12 final int NEW = 0; |
| 11 final int SUPPORT_FILTER_ALL = 1; | 13 final int SUPPORT_FILTER_ALL = 1; |
| 12 final int SUPPORT_FILTER_BZIP2 = 2; | 14 final int SUPPORT_FILTER_BZIP2 = 2; |
| 13 final int SUPPORT_FILTER_COMPRESS = 3; | 15 final int SUPPORT_FILTER_COMPRESS = 3; |
| 14 final int SUPPORT_FILTER_GZIP = 4; | 16 final int SUPPORT_FILTER_GZIP = 4; |
| 15 final int SUPPORT_FILTER_LZMA = 5; | 17 final int SUPPORT_FILTER_LZMA = 5; |
| 16 final int SUPPORT_FILTER_XZ = 6; | 18 final int SUPPORT_FILTER_XZ = 6; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 final int SET_FILTER_OPTIONS = 18; | 30 final int SET_FILTER_OPTIONS = 18; |
| 29 final int SET_FORMAT_OPTIONS = 19; | 31 final int SET_FORMAT_OPTIONS = 19; |
| 30 final int SET_OPTIONS = 20; | 32 final int SET_OPTIONS = 20; |
| 31 final int OPEN_FILENAME = 21; | 33 final int OPEN_FILENAME = 21; |
| 32 final int OPEN_MEMORY = 22; | 34 final int OPEN_MEMORY = 22; |
| 33 final int NEXT_HEADER = 23; | 35 final int NEXT_HEADER = 23; |
| 34 final int DATA_BLOCK = 24; | 36 final int DATA_BLOCK = 24; |
| 35 final int DATA_SKIP = 25; | 37 final int DATA_SKIP = 25; |
| 36 final int CLOSE = 26; | 38 final int CLOSE = 26; |
| 37 final int FREE = 27; | 39 final int FREE = 27; |
| OLD | NEW |