mirror of
https://github.com/transmission/transmission
synced 2024-12-27 18:18:10 +00:00
4c1b627647
Port libtransmission to C++. This PR doesn't refactor everything to c++. Its code changes are only what was necessary to compile and link as c++. See libtransmission/README.md for details on how to submit modernization patches! Co-authored-by: Mike Gelfand <mikedld@mikedld.com>
20 lines
574 B
C
20 lines
574 B
C
/*
|
|
* This file Copyright (C) 2007-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __TRANSMISSION__
|
|
#error only libtransmission should #include this header.
|
|
#endif
|
|
|
|
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);
|