reaper-low 0.1.0

Bindings for the REAPER C++ API - low-level API
Documentation
1
2
3
4
5
6
7
8
use crate::{Reaper, ReaperFunctionPointers};

impl Reaper {
    /// Gives access to the REAPER function pointers.
    pub fn pointers(&self) -> &ReaperFunctionPointers {
        &self.pointers
    }
}