2008-02-15 16:00:46 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2007-2014 Mnemosyne LLC
|
2008-02-15 16:00:46 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2008-02-15 16:00:46 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2008-02-15 16:00:46 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/**
|
|
|
|
* @addtogroup file_io File IO
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-01-31 21:58:25 +00:00
|
|
|
void tr_verifyAdd (tr_torrent * tor,
|
|
|
|
tr_verify_done_func callback_func,
|
|
|
|
void * callback_user_data);
|
2008-02-15 16:00:46 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_verifyRemove (tr_torrent * tor);
|
2008-02-15 16:00:46 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_verifyClose (tr_session *);
|
2008-10-28 15:13:07 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/* @} */
|
|
|
|
|