mirror of
https://github.com/transmission/transmission
synced 2024-12-22 15:54:57 +00:00
5df3505832
* Add a "Start Now" action for newly added torrent notifications in the GTK client * Const placement * Compilation fixes * post-merge fix * Morph torrent_start_now into Session::start_now
19 lines
414 B
C++
19 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);
|