1
 2
 3
 4
 5
 6
 7
 8
 9
10
use crate::ffi::*;
use crate::lazy::*;

/// A dynamically loaded `libxcb-shape`.
pub struct XcbShape {
    pub(crate) lib: NamedLibrary,
    pub(crate) shape: XcbShapeShape,
}

lib_entry!(XcbShape, "libxcb-shape.so.0", "libxcb-shape.so");