mirror of
https://github.com/chatmail/core.git
synced 2026-04-25 01:16:29 +03:00
21 lines
474 B
Rust
21 lines
474 B
Rust
use c2rust_bitfields::BitfieldStruct;
|
|
use libc;
|
|
|
|
use crate::dc_context::dc_context_t;
|
|
use crate::dc_lot::dc_lot_t;
|
|
use crate::dc_sqlite3::dc_sqlite3_t;
|
|
use crate::types::*;
|
|
use crate::x::*;
|
|
|
|
/* yes: uppercase */
|
|
/* library private: key-history */
|
|
pub unsafe fn dc_add_to_keyhistory(
|
|
mut context: *mut dc_context_t,
|
|
mut rfc724_mid: *const libc::c_char,
|
|
mut sending_time: time_t,
|
|
mut addr: *const libc::c_char,
|
|
mut fingerprint: *const libc::c_char,
|
|
) {
|
|
|
|
}
|