wxrust-base 0.0.1-alpha

Binding for the (part of) wxBase library of the wxWidgets toolkit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::*;

extern "C" {

    // wxMessageOutput
    pub fn wxMessageOutput_delete(self_: *mut c_void);
    pub fn wxMessageOutput_Get() -> *mut c_void;
    pub fn wxMessageOutput_Set(msgout: *mut c_void) -> *mut c_void;
    // NOT_SUPPORTED: pub fn wxMessageOutput_Printf(self_: *mut c_void, format: *const c_void, None: ...);
    pub fn wxMessageOutput_Output(self_: *mut c_void, str: *const c_void);

}