forked from vitrine/wmaker
12 lines
192 B
Rust
12 lines
192 B
Rust
use std::ffi::c_void;
|
|
|
|
pub type WMHandlerID = *mut c_void;
|
|
|
|
pub mod ffi {
|
|
use super::WMHandlerID;
|
|
|
|
unsafe extern "C" {
|
|
pub fn WMDeleteTimerHandler(timer: WMHandlerID);
|
|
}
|
|
}
|