(arg1: *mut sqlite3_value, p: *mut c_char)
| 256 | |
| 257 | #[cfg(feature = "static")] |
| 258 | pub unsafe fn sqlite3ext_value_pointer(arg1: *mut sqlite3_value, p: *mut c_char) -> *mut c_void { |
| 259 | libsqlite3_sys::sqlite3_value_pointer(arg1, p) |
| 260 | } |
| 261 | #[cfg(not(feature = "static"))] |
| 262 | pub unsafe fn sqlite3ext_value_pointer(arg1: *mut sqlite3_value, p: *mut c_char) -> *mut c_void { |
| 263 | ((*SQLITE3_API).value_pointer.expect(EXPECT_MESSAGE))(arg1, p) |