Skip to main content

gdk/
device_manager.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use crate::{DeviceManager, ffi};
4
5impl DeviceManager {
6    #[doc(alias = "gdk_disable_multidevice")]
7    pub fn disable_multidevice() {
8        assert_not_initialized!();
9        unsafe { ffi::gdk_disable_multidevice() }
10    }
11}