This commit is contained in:
Colin Sherratt
2014-01-27 03:12:35 -05:00
commit 7d4f238b9b
5 changed files with 110 additions and 0 deletions

17
test.rs Normal file
View File

@ -0,0 +1,17 @@
extern mod ovr = "ovr-rs";
fn main()
{
unsafe {
ovr::OVR_system_init();
let dm = ovr::OVR_DeviceManager_Create();
println!("dm {:?}", dm);
let em = ovr::OVR_DeviceManager_EnumerateDevices(dm);
println!("dm {:?}", em);
}
}