Last change
on this file was
14724,
checked in by jordan, 6 years ago
|
use '#pragma once' instead of #ifndef..#define..#endif guards
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
584 bytes
|
Line | |
---|
1 | /* |
---|
2 | * This file Copyright (C) 2007-2014 Mnemosyne LLC |
---|
3 | * |
---|
4 | * It may be used under the GNU GPL versions 2 or 3 |
---|
5 | * or any future license endorsed by Mnemosyne LLC. |
---|
6 | * |
---|
7 | * $Id: verify.h 14724 2016-03-29 16:37:21Z mikedld $ |
---|
8 | */ |
---|
9 | |
---|
10 | #ifndef __TRANSMISSION__ |
---|
11 | #error only libtransmission should #include this header. |
---|
12 | #endif |
---|
13 | |
---|
14 | #pragma once |
---|
15 | |
---|
16 | /** |
---|
17 | * @addtogroup file_io File IO |
---|
18 | * @{ |
---|
19 | */ |
---|
20 | |
---|
21 | void tr_verifyAdd (tr_torrent * tor, |
---|
22 | tr_verify_done_func callback_func, |
---|
23 | void * callback_user_data); |
---|
24 | |
---|
25 | void tr_verifyRemove (tr_torrent * tor); |
---|
26 | |
---|
27 | void tr_verifyClose (tr_session *); |
---|
28 | |
---|
29 | /* @} */ |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.