diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-10-03 10:11:11 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-10-03 10:11:11 +0200 |
commit | c8fd077e17f7a7147d6877f2343c82790b187bd2 (patch) | |
tree | 5ecb913e185ea471fb6f3892537b0f5677614ee1 /src/os/mod.rs | |
parent | 5e1e7436af2b06350d30420c43e8b4a0dcf8ddfe (diff) | |
parent | 8c6a27d42615fc97b1aed31c20c3aff3d25c88d4 (diff) | |
download | glutin-c8fd077e17f7a7147d6877f2343c82790b187bd2.tar.gz glutin-c8fd077e17f7a7147d6877f2343c82790b187bd2.zip |
Merge pull request #617 from tomaka/platform-specific
Add an `os` module containing platform-specific traits
Diffstat (limited to 'src/os/mod.rs')
-rw-r--r-- | src/os/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/os/mod.rs b/src/os/mod.rs new file mode 100644 index 0000000..251a8d4 --- /dev/null +++ b/src/os/mod.rs @@ -0,0 +1,9 @@ +//! Contains traits with platform-specific methods in them. +//! +//! Contains the follow modules: +//! +//! - `unix` +//! - `windows` +//! +pub mod unix; +pub mod windows; |