indy-sys 1.16.0-dev-1640

FFI bindings to Libindy C API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

use {CString, Error, CommandHandle};

extern {

    pub fn indy_open_blob_storage_reader(command_handle: CommandHandle,
                                         type_: CString,
                                         config_json: CString,
                                         cb: Option<ResponseI32CB>) -> Error;

    pub fn indy_open_blob_storage_writer(command_handle: CommandHandle,
                                         type_: CString,
                                         config_json: CString,
                                         cb: Option<ResponseI32CB>) -> Error;
}