27 lines
		
	
	
		
			352 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			352 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #[cfg(quartz)]
 | |
| extern crate block;
 | |
| #[macro_use]
 | |
| extern crate cfg_if;
 | |
| pub use hbb_common::libc;
 | |
| #[cfg(dxgi)]
 | |
| extern crate winapi;
 | |
| 
 | |
| pub use common::*;
 | |
| 
 | |
| #[cfg(quartz)]
 | |
| pub mod quartz;
 | |
| 
 | |
| #[cfg(x11)]
 | |
| pub mod x11;
 | |
| 
 | |
| #[cfg(all(x11, feature = "wayland"))]
 | |
| pub mod wayland;
 | |
| 
 | |
| #[cfg(dxgi)]
 | |
| pub mod dxgi;
 | |
| 
 | |
| #[cfg(target_os = "android")]
 | |
| pub mod android;
 | |
| 
 | |
| mod common;
 |