20 lines
414 B
C++
20 lines
414 B
C++
/*
|
|
* This file Copyright (C) 2008-2021 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glibmm.h>
|
|
|
|
class Session;
|
|
|
|
void gtr_notify_init();
|
|
|
|
void gtr_notify_torrent_added(Glib::RefPtr<Session> const& core, int torrent_id);
|
|
|
|
void gtr_notify_torrent_completed(Glib::RefPtr<Session> const& core, int torrent_id);
|