pub trait Api {
    // Provided methods
    fn new_bitmap_table(
        &self
    ) -> unsafe extern "C" fn(count: c_int, width: c_int, height: c_int) -> *mut LCDBitmapTable { ... }
    fn free_bitmap_table(
        &self
    ) -> unsafe extern "C" fn(table: *mut LCDBitmapTable) { ... }
    fn load_bitmap_table(
        &self
    ) -> unsafe extern "C" fn(path: *const c_char, out_err: *mut *const c_char) -> *mut LCDBitmapTable { ... }
    fn load_into_bitmap_table(
        &self
    ) -> unsafe extern "C" fn(path: *const c_char, table: *mut LCDBitmapTable, out_err: *mut *const c_char) { ... }
    fn get_table_bitmap(
        &self
    ) -> unsafe extern "C" fn(table: *mut LCDBitmapTable, idx: c_int) -> *mut LCDBitmap { ... }
}
Expand description

End-point with methods about ops over bitmap-table.

Provided Methods§

source

fn new_bitmap_table( &self ) -> unsafe extern "C" fn(count: c_int, width: c_int, height: c_int) -> *mut LCDBitmapTable

source

fn free_bitmap_table(&self) -> unsafe extern "C" fn(table: *mut LCDBitmapTable)

source

fn load_bitmap_table( &self ) -> unsafe extern "C" fn(path: *const c_char, out_err: *mut *const c_char) -> *mut LCDBitmapTable

source

fn load_into_bitmap_table( &self ) -> unsafe extern "C" fn(path: *const c_char, table: *mut LCDBitmapTable, out_err: *mut *const c_char)

source

fn get_table_bitmap( &self ) -> unsafe extern "C" fn(table: *mut LCDBitmapTable, idx: c_int) -> *mut LCDBitmap

Implementors§