Similar to #20826 but keeps the Swift implementation. There were quite a few changes in the `call` crate, and so that code now has two variants. Closes #13714 Release Notes: - Added preliminary Linux support for voice chat and viewing screenshares. --------- Co-authored-by: Kirill Bulatov <mail4score@gmail.com> Co-authored-by: Kirill Bulatov <kirill@zed.dev> Co-authored-by: Mikayla <mikayla@zed.dev>
26 lines
529 B
Rust
26 lines
529 B
Rust
mod clipboard;
|
|
mod direct_write;
|
|
mod dispatcher;
|
|
mod display;
|
|
mod events;
|
|
mod platform;
|
|
mod system_settings;
|
|
mod util;
|
|
mod window;
|
|
mod wrapper;
|
|
|
|
pub(crate) use clipboard::*;
|
|
pub(crate) use direct_write::*;
|
|
pub(crate) use dispatcher::*;
|
|
pub(crate) use display::*;
|
|
pub(crate) use events::*;
|
|
pub(crate) use platform::*;
|
|
pub(crate) use system_settings::*;
|
|
pub(crate) use util::*;
|
|
pub(crate) use window::*;
|
|
pub(crate) use wrapper::*;
|
|
|
|
pub(crate) use windows::Win32::Foundation::HWND;
|
|
|
|
pub(crate) type PlatformScreenCaptureFrame = ();
|