Changeset 2202 for trunk/libtransmission/inout.h
- Timestamp:
- Jun 26, 2007, 6:45:03 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/inout.h
r1822 r2202 28 28 typedef struct tr_io_s tr_io_t; 29 29 30 voidtr_ioLoadResume ( tr_torrent_t * );31 void tr_ioRemoveResume( tr_torrent_t * tor);30 int tr_ioLoadResume ( tr_torrent_t * ); 31 void tr_ioRemoveResume( tr_torrent_t * ); 32 32 33 tr_io_t * tr_ioInit ( tr_torrent_t * ); 33 34 enum 35 { 36 TR_RECHECK_FAST, /* only try the fast resume, even if it's incomplete */ 37 TR_RECHECK_FORCE /* ignore the fast resume data; recheck from disk */ 38 }; 39 int tr_ioCheckFiles ( tr_torrent_t *, int recheckMode ); 40 41 42 tr_io_t * tr_ioInitFast ( tr_torrent_t * ); 34 43 35 44 /***********************************************************************
Note: See TracChangeset
for help on using the changeset viewer.