indy-sys 1.15.0-dev-1528

FFI bindings to Libindy C API
Documentation
use super::*;

use {CString, Error, CommandHandle};

extern {

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

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