transmission/libtransmission/verify.h

33 lines
634 B
C
Raw Normal View History

/*
* This file Copyright (C) 2007-2014 Mnemosyne LLC
*
* It may be used under the GNU Public License v2 or v3 licenses,
* or any future license endorsed by Mnemosyne LLC.
*
* $Id$
*/
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
#endif
#ifndef TR_VERIFY_H
#define TR_VERIFY_H 1
/**
* @addtogroup file_io File IO
* @{
*/
void tr_verifyAdd (tr_torrent * tor,
tr_verify_done_func callback_func,
void * callback_user_data);
void tr_verifyRemove (tr_torrent * tor);
void tr_verifyClose (tr_session *);
/* @} */
#endif