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
|
2012-12-05 17:29:46 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2 (b)
|
2009-12-07 03:57:55 +00:00
|
|
|
* 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"
|
2012-12-14 04:34:42 +00:00
|
|
|
#include "variant.h"
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2012-12-14 04:34:42 +00:00
|
|
|
bool tr_metainfoParse (const tr_session * session,
|
|
|
|
const tr_variant * variant,
|
|
|
|
tr_info * setmeInfo,
|
|
|
|
bool * setmeHasInfoDict,
|
|
|
|
int * setmeInfoDictLength);
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_metainfoRemoveSaved (const tr_session * session,
|
|
|
|
const tr_info * info);
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
char* tr_metainfoGetBasename (const tr_info *);
|
2010-04-20 23:14:00 +00:00
|
|
|
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|