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" {

    // wxRefCounter
    pub fn wxRefCounter_delete(self_: *mut c_void);
    pub fn wxRefCounter_new() -> *mut c_void;
    pub fn wxRefCounter_DecRef(self_: *mut c_void);
    pub fn wxRefCounter_GetRefCount(self_: *const c_void) -> c_int;
    pub fn wxRefCounter_IncRef(self_: *mut c_void);

}