mirror of
https://github.com/chatmail/core.git
synced 2026-04-26 09:56:35 +03:00
Stop using Event callback return values
Since stock string callback has been deprecated, all event callbacks return 0. For compatibility, C declarations are not changed and FFI users are expected to return 0 from their callbacks.
This commit is contained in:
@@ -203,9 +203,7 @@ fn test_encryption_decryption() {
|
||||
assert_eq!(plain, original_text);
|
||||
}
|
||||
|
||||
fn cb(_context: &Context, _event: Event) -> libc::uintptr_t {
|
||||
0
|
||||
}
|
||||
fn cb(_context: &Context, _event: Event) {}
|
||||
|
||||
#[allow(dead_code)]
|
||||
struct TestContext {
|
||||
|
||||
Reference in New Issue
Block a user