Windows gpui platform (#8490)

First implementation of gpui platform for Windows.

Release Notes:

- N/A

---------

Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
This commit is contained in:
白山風露 2024-03-04 03:53:22 +09:00 committed by GitHub
parent a88df2c103
commit 69e0474ebb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 1610 additions and 33 deletions

View file

@ -0,0 +1,13 @@
mod dispatcher;
mod display;
mod platform;
mod text_system;
mod util;
mod window;
pub(crate) use dispatcher::*;
pub(crate) use display::*;
pub(crate) use platform::*;
pub(crate) use text_system::*;
pub(crate) use util::*;
pub(crate) use window::*;