We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 632dc73 + 4e32c70 commit 89746c4Copy full SHA for 89746c4
src/lib.rs
@@ -13,6 +13,8 @@ pub type c_va_list = raw::c_void;
13
pub type c_int = raw::c_int;
14
#[allow(non_camel_case_types)]
15
pub type c_char = raw::c_char;
16
+#[allow(non_camel_case_types)]
17
+pub type c_size_t = raw::c_ulong;
18
19
// automatically generated by rust-bindgen
20
@@ -89,5 +91,10 @@ extern "C" {
89
91
tag: *const c_char,
90
92
default_prio: c_int)
93
-> c_int;
94
+ pub fn __android_log_is_loggable_len(prio: c_int,
95
+ tag: *const c_char,
96
+ size: c_size_t,
97
+ default_prio: c_int)
98
+ -> c_int;
99
pub fn __android_log_write_log_message(log_message: *mut __android_log_message);
100
}
0 commit comments