1
2
3
4
5
6
7
8
9
use std::os::raw::c_void;

pub struct VRExternalShmemPtr;

impl VRExternalShmemPtr {
    pub fn new(_: *mut c_void) -> VRExternalShmemPtr {
        VRExternalShmemPtr
    }
}