1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
use super::*;

use {CString, Error, Handle};

extern {

    #[no_mangle]
    pub fn indy_open_blob_storage_reader(command_handle: Handle,
                                         type_: CString,
                                         config_json: CString,
                                         cb: Option<ResponseI32CB>) -> Error;

    #[no_mangle]
    pub fn indy_open_blob_storage_writer(command_handle: Handle,
                                         type_: CString,
                                         config_json: CString,
                                         cb: Option<ResponseI32CB>) -> Error;
}