1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pub struct ObsString(&'static str);

impl ObsString {
    /// # Safety
    /// Does no checks for nul terminated strings. This could cause memory overruns if used
    /// incorrectly.
    pub unsafe fn from_nul_terminted_str(string: &'static str) -> Self {
        Self(string)
    }

    pub fn as_str(&self) -> &'static str {
        self.0
    }

    pub fn as_ptr(&self) -> *const std::os::raw::c_char {
        self.0.as_ptr() as *const std::os::raw::c_char
    }
}

#[macro_export]
macro_rules! obs_string {
    ($e:expr) => {
        unsafe { $crate::string::ObsString::from_nul_terminted_str(concat!($e, "\0")) }
    };
}