Buttplug sex toy control library
at dev 25 lines 661 B view raw
1// Buttplug Rust Source Code File - See https://buttplug.io for more info. 2// 3// Copyright 2016-2024 Nonpolynomial Labs LLC. All rights reserved. 4// 5// Licensed under the BSD 3-Clause license. See LICENSE file in the project root 6// for full license information. 7 8#[cfg(target_os = "windows")] 9#[macro_use] 10extern crate log; 11 12#[cfg(target_os = "windows")] 13#[macro_use] 14extern crate strum_macros; 15 16#[cfg(target_os = "windows")] 17mod xinput_device_comm_manager; 18#[cfg(target_os = "windows")] 19mod xinput_hardware; 20 21#[cfg(target_os = "windows")] 22pub use xinput_device_comm_manager::{ 23 XInputDeviceCommunicationManager, 24 XInputDeviceCommunicationManagerBuilder, 25};