indy-sys 1.6.8-dev-910

FFI bindings to Libindy C API
Documentation
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;
}