Changeset 6840 for trunk/libtransmission/completion.h
- Timestamp:
- Oct 2, 2008, 11:37:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/completion.h
r6795 r6840 55 55 void tr_cpInvalidateDND( tr_completion * ); 56 56 57 void tr_cpGetAmountDone( const tr_completion * ,58 float * tab,59 int tabCount );57 void tr_cpGetAmountDone( const tr_completion * completion, 58 float * tab, 59 int tabCount ); 60 60 61 61 /* Pieces */ 62 int tr_cpPieceIsComplete( 63 const tr_completion *, 64 tr_piece_index_t piece ); 62 int tr_cpPieceIsComplete( const tr_completion * completion, 63 tr_piece_index_t piece ); 65 64 66 void tr_cpPieceAdd( 67 tr_completion *, 68 tr_piece_index_t piece ); 65 void tr_cpPieceAdd( tr_completion * completion, 66 tr_piece_index_t piece ); 69 67 70 void tr_cpPieceRem( 71 tr_completion *, 72 tr_piece_index_t piece ); 68 void tr_cpPieceRem( tr_completion * completion, 69 tr_piece_index_t piece ); 73 70 74 71 /* Blocks */ 75 int tr_cpBlockIsComplete( 76 const tr_completion *, 77 tr_block_index_t block ); 72 int tr_cpBlockIsComplete( const tr_completion * completion, 73 tr_block_index_t block ); 78 74 79 void tr_cpBlockAdd( 80 tr_completion *, 81 tr_block_index_t block ); 75 void tr_cpBlockAdd( tr_completion * completion, 76 tr_block_index_t block ); 82 77 83 tr_errno tr_cpBlockBitfieldSet( 84 tr_completion *, 85 struct tr_bitfield 86 * ); 78 int tr_cpBlockBitfieldSet( tr_completion * completion, 79 struct tr_bitfield * blocks ); 87 80 88 int tr_cpMissingBlocksInPiece( 89 const tr_completion * cp, 90 tr_piece_index_t 91 piece ); 81 int tr_cpMissingBlocksInPiece( const tr_completion * completion, 82 tr_piece_index_t piece ); 92 83 93 84
Note: See TracChangeset
for help on using the changeset viewer.