1
0
Fork 0
baseview/src/lib.rs

17 lines
231 B
Rust
Raw Normal View History

2020-05-26 04:04:48 +10:00
use std::ffi::c_void;
pub enum Parent {
None,
AsIfParented,
WithParent(*mut c_void)
}
pub struct WindowOpenOptions<'a> {
pub title: &'a str,
pub width: usize,
pub height: usize,
pub parent: Parent
}