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

Side by Side Diff: utils/archive/reader.h

Issue 10824210: Fix the archive code so that it compiles in a stricter mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Small fixes 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/read_request.dart ('k') | utils/archive/reader.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 * This file declares request-handling functions for reading archives. Each 6 * This file declares request-handling functions for reading archives. Each
7 * function is called when a message is received with the corresponding request 7 * function is called when a message is received with the corresponding request
8 * type, and posts a success or error response to the reply port. 8 * type, and posts a success or error response to the reply port.
9 * 9 *
10 * There is a close correspondence between functions here and the libarchive 10 * There is a close correspondence between functions here and the libarchive
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 void archiveReadSupportFormatIso9660(Dart_Port p, struct archive* a); 48 void archiveReadSupportFormatIso9660(Dart_Port p, struct archive* a);
49 49
50 void archiveReadSupportFormatMtree(Dart_Port p, struct archive* a); 50 void archiveReadSupportFormatMtree(Dart_Port p, struct archive* a);
51 51
52 void archiveReadSupportFormatRaw(Dart_Port p, struct archive* a); 52 void archiveReadSupportFormatRaw(Dart_Port p, struct archive* a);
53 53
54 void archiveReadSupportFormatTar(Dart_Port p, struct archive* a); 54 void archiveReadSupportFormatTar(Dart_Port p, struct archive* a);
55 55
56 void archiveReadSupportFormatZip(Dart_Port p, struct archive* a); 56 void archiveReadSupportFormatZip(Dart_Port p, struct archive* a);
57 57
58 void archiveReadSetFilterOptions(Dart_Port p, struct archive* a, 58 void archiveReadSetFilterOption(Dart_Port p, struct archive* a,
59 Dart_CObject* request); 59 Dart_CObject* request);
60 60
61 void archiveReadSetFormatOptions(Dart_Port p, struct archive* a, 61 void archiveReadSetFormatOption(Dart_Port p, struct archive* a,
62 Dart_CObject* request); 62 Dart_CObject* request);
63 63
64 void archiveReadSetOptions(Dart_Port p, struct archive* a, 64 void archiveReadSetOption(Dart_Port p, struct archive* a,
65 Dart_CObject* request); 65 Dart_CObject* request);
66 66
67 void archiveReadOpenFilename(Dart_Port p, struct archive* a, 67 void archiveReadOpenFilename(Dart_Port p, struct archive* a,
68 Dart_CObject* request); 68 Dart_CObject* request);
69 69
70 void archiveReadOpenMemory(Dart_Port p, struct archive* a, 70 void archiveReadOpenMemory(Dart_Port p, struct archive* a,
71 Dart_CObject* request); 71 Dart_CObject* request);
72 72
73 void archiveReadNextHeader(Dart_Port p, struct archive* a); 73 void archiveReadNextHeader(Dart_Port p, struct archive* a);
74 74
75 void archiveReadDataBlock(Dart_Port p, struct archive* a); 75 void archiveReadDataBlock(Dart_Port p, struct archive* a);
76 76
77 void archiveReadDataSkip(Dart_Port p, struct archive* a); 77 void archiveReadDataSkip(Dart_Port p, struct archive* a);
78 78
79 void archiveReadClose(Dart_Port p, struct archive* a); 79 void archiveReadClose(Dart_Port p, struct archive* a);
80 80
81 void archiveReadFree(Dart_Port p, struct archive* a); 81 void archiveReadFree(Dart_Port p, struct archive* a);
82 82
83 #endif // DART_ARCHIVE_READER_H_ 83 #endif // DART_ARCHIVE_READER_H_
OLDNEW
« no previous file with comments | « utils/archive/read_request.dart ('k') | utils/archive/reader.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698