forked from lthn/blockchain
39 lines
671 B
C++
39 lines
671 B
C++
|
|
// Copyright (c) 2014-2020 Zano Project
|
||
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
|
||
|
|
|
||
|
|
#include "plain_wallet_api.h"
|
||
|
|
#include "plain_wallet_api_impl.h"
|
||
|
|
|
||
|
|
namespace wallet
|
||
|
|
{
|
||
|
|
hwallet create_instance(const std::string port, const std::string ip)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
void destroy_instance(hwallet)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
std::string open(const std::string& path, const std::string password)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
void start_sync_thread(hwallet)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
std::string get_sync_status(hwallet)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
std::string sync(hwallet)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
std::string invoke(hwallet h, const std::string& params)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|