()
| 1649 | |
| 1650 | #[no_mangle] |
| 1651 | pub extern "C" fn bloom_toggle_fullscreen() { |
| 1652 | #[cfg(target_os = "linux")] |
| 1653 | x11_impl::toggle_fullscreen(); |
| 1654 | } |
| 1655 | #[no_mangle] |
| 1656 | pub extern "C" fn bloom_set_window_title(title_ptr: *const u8) { |
| 1657 | let title = str_from_header(title_ptr); |
nothing calls this directly
no test coverage detected