1
2
3
4
5
6
7
8
9
use basic_components::CacheDynParam;

#[derive(Clone, Copy, Debug)]
#[repr(C)]
pub struct SharedCache;

extern "C" {
    pub fn SharedCache_cachep(this: *mut SharedCache) -> *mut CacheDynParam;
}