winio-ui-android 0.1.0

Android backend for winio.
1
2
3
4
5
6
7
8
jni::bind_java_type! {
    pub Cursor => android.database.Cursor,
    methods {
        fn move_to_next() -> bool,
        fn get_string(column_index: jint) -> JString,
        fn get_column_index(column_name: JString) -> jint,
    }
}