Last change
on this file since 10084 was
10084,
checked in by charles, 13 years ago
|
(trunk) #2802, #2716, #2717 -- remember magnet links and their settings between sessions, and allow their trackers to be modified
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
1.1 KB
|
Line | |
---|
1 | /* |
---|
2 | * This file Copyright (C) 2009-2010 Mnemosyne LLC |
---|
3 | * |
---|
4 | * This file is licensed by the GPL version 2. Works owned by the |
---|
5 | * Transmission project are granted a special exemption to clause 2(b) |
---|
6 | * so that the bulk of its code can remain under the MIT license. |
---|
7 | * This exemption does not extend to derived works not owned by |
---|
8 | * the Transmission project. |
---|
9 | * |
---|
10 | * $Id: metainfo.h 10084 2010-02-02 22:45:22Z charles $ |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef __TRANSMISSION__ |
---|
14 | #error only libtransmission should #include this header. |
---|
15 | #endif |
---|
16 | |
---|
17 | #ifndef TR_METAINFO_H |
---|
18 | #define TR_METAINFO_H 1 |
---|
19 | |
---|
20 | #include "transmission.h" |
---|
21 | |
---|
22 | struct tr_benc; |
---|
23 | |
---|
24 | tr_bool tr_metainfoParse( const tr_session * session, |
---|
25 | const struct tr_benc * benc, |
---|
26 | tr_info * setmeInfo, |
---|
27 | tr_bool * setmeHasInfoDict, |
---|
28 | int * setmeInfoDictOffset, |
---|
29 | int * setmeInfoDictLength ); |
---|
30 | |
---|
31 | void tr_metainfoRemoveSaved( const tr_session * session, |
---|
32 | const tr_info * info ); |
---|
33 | |
---|
34 | void tr_metainfoMigrate( tr_session * session, |
---|
35 | tr_info * inf ); |
---|
36 | |
---|
37 | |
---|
38 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.