forked from vitrine/wmaker
14 lines
208 B
Rust
14 lines
208 B
Rust
use std::ffi::c_void;
|
|
|
|
pub type Icon = c_void;
|
|
|
|
pub mod ffi {
|
|
use std::ffi::c_int;
|
|
|
|
use super::Icon;
|
|
|
|
unsafe extern "C" {
|
|
pub fn wIconSetHighlighted(icon: *mut Icon, flag: c_int);
|
|
}
|
|
}
|