19 lines
591 B
C++
19 lines
591 B
C++
// This file Copyright © Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <string_view>
|
|
|
|
struct tr_session;
|
|
struct tr_variant;
|
|
|
|
using tr_rpc_response_func = std::function<void(tr_session* session, tr_variant&& response)>;
|
|
|
|
void tr_rpc_request_exec(tr_session* session, tr_variant const& request, tr_rpc_response_func&& callback = {});
|
|
|
|
tr_variant tr_rpc_parse_list_str(std::string_view str);
|