2009-12-07 03:57:55 +00:00
|
|
|
/*
|
2011-01-19 13:48:47 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2010-12-27 19:18:17 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
2009-12-07 03:57:55 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2009-12-07 03:57:55 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2009-11-24 02:16:31 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#ifndef TR_METAINFO_H
|
|
|
|
#define TR_METAINFO_H 1
|
|
|
|
|
2007-01-19 04:42:31 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
|
2008-02-26 21:58:58 +00:00
|
|
|
struct tr_benc;
|
2007-12-21 22:18:40 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
bool tr_metainfoParse( const tr_session * session,
|
|
|
|
const struct tr_benc * benc,
|
|
|
|
tr_info * setmeInfo,
|
|
|
|
bool * setmeHasInfoDict,
|
|
|
|
int * setmeInfoDictLength );
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2008-12-14 11:21:11 +00:00
|
|
|
void tr_metainfoRemoveSaved( const tr_session * session,
|
|
|
|
const tr_info * info );
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2008-12-14 11:21:11 +00:00
|
|
|
void tr_metainfoMigrate( tr_session * session,
|
|
|
|
tr_info * inf );
|
2007-12-22 18:00:47 +00:00
|
|
|
|
2010-04-20 23:14:00 +00:00
|
|
|
char* tr_metainfoGetBasename( const tr_info * );
|
|
|
|
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|