transmission/libtransmission/stats.h

24 lines
659 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.
*
*/
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
#endif
#ifndef TR_STATS_H
#define TR_STATS_H
void tr_statsInit (tr_session * session);
void tr_statsClose (tr_session * session);
void tr_statsSaveDirty (tr_session * session);
void tr_statsAddUploaded (tr_session * session, uint32_t bytes);
void tr_statsAddDownloaded (tr_session * session, uint32_t bytes);
void tr_statsFileCreated (tr_session * session);
#endif