blob: a81201695dd356be6262d16ebbd15a4191d810dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
#include <android/log.h>
#define LOG_TAG "[NDK]"
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
#define LOGW(...) __android_log_print(ANDROID_LOG_WARN,LOG_TAG,__VA_ARGS__)
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
*/
#ifdef __cplusplus
extern "C"
{
#endif
void* MONERO_WalletManager_createWallet(const char* path, const char* password, const char* language, int networkType);
const char* MONERO_Wallet_errorString(void* wallet_ptr);
int MONERO_Wallet_status(void* wallet_ptr);
int MONERO_DEBUG_sleep(int time);
#ifdef __cplusplus
}
#endif
|