summaryrefslogtreecommitdiff
path: root/prototype_2016/third_party/qml-rust/src/types.rs
blob: 11b24d4134eeca7d4d702cfff2e523b5d99bbcb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use libc;

pub type DosQVariant = *const WQVariant;
pub type MutDosQVariant = *mut WQVariant;
pub type DosQObject = *mut WQObject;
pub type DosQmlApplicationEngine = *mut WQmlApplicationEngine;
pub type DosQQmlContext = *const WQQmlContext;
pub type DosQModelIndex = *const WQModelIndex;
pub type MutDosQHashIntQByteArray = *mut WQHashIntQByteArray;
pub type DosQMetaObject = *const WQMetaObject;
pub type DosQAbstractListModel = *mut WQAbstractListModel;
pub type DosQUrl = *mut WQUrl;

pub type DosCStr = *const libc::c_char;

pub enum WQVariant {}
pub enum WQObject {}
pub enum WQmlApplicationEngine {}
pub enum WQQmlContext {}
pub enum WQModelIndex {}
pub enum WQHashIntQByteArray {}
pub enum WQMetaObject {}
pub enum WQAbstractListModel {}
pub enum WQUrl {}