Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: utils/archive/read_request.dart

Issue 10842002: Add the beginnings of a Dart wrapper for libarchive. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/archive/options.dart ('k') | utils/archive/reader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 /**
6 * The request ids for read-related messages to send to the C extension.
7 */
8 #library("read_request");
9
10 final int NEW = 0;
11 final int SUPPORT_FILTER_ALL = 1;
12 final int SUPPORT_FILTER_BZIP2 = 2;
13 final int SUPPORT_FILTER_COMPRESS = 3;
14 final int SUPPORT_FILTER_GZIP = 4;
15 final int SUPPORT_FILTER_LZMA = 5;
16 final int SUPPORT_FILTER_XZ = 6;
17 final int SUPPORT_FILTER_PROGRAM = 7;
18 final int SUPPORT_FILTER_PROGRAM_SIGNATURE = 8;
19 final int SUPPORT_FORMAT_ALL = 9;
20 final int SUPPORT_FORMAT_AR = 10;
21 final int SUPPORT_FORMAT_CPIO = 11;
22 final int SUPPORT_FORMAT_EMPTY = 12;
23 final int SUPPORT_FORMAT_ISO9599 = 13;
24 final int SUPPORT_FORMAT_MTREE = 14;
25 final int SUPPORT_FORMAT_RAW = 15;
26 final int SUPPORT_FORMAT_TAR = 16;
27 final int SUPPORT_FORMAT_ZIP = 17;
28 final int SET_FILTER_OPTIONS = 18;
29 final int SET_FORMAT_OPTIONS = 19;
30 final int SET_OPTIONS = 20;
31 final int OPEN_FILENAME = 21;
32 final int OPEN_MEMORY = 22;
33 final int NEXT_HEADER = 23;
34 final int DATA_BLOCK = 24;
35 final int DATA_SKIP = 25;
36 final int CLOSE = 26;
37 final int FREE = 27;
OLDNEW
« no previous file with comments | « utils/archive/options.dart ('k') | utils/archive/reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698