diff options
| author | Brian Anderson <banderson@mozilla.com> | 2016-09-21 19:50:30 +0000 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2016-10-01 19:32:59 +0000 |
| commit | 5c215623020b878353d115b6ddb728a960890a98 (patch) | |
| tree | 6d360cf840bdb2c312e122a6e3a54eeb74af9feb /src/libstd/sys/windows | |
| parent | e6457bb67678c719d610e8f27f827c2e1ea56111 (diff) | |
| download | rust-5c215623020b878353d115b6ddb728a960890a98.tar.gz rust-5c215623020b878353d115b6ddb728a960890a98.zip | |
std: Move platform specific env code into sys
Diffstat (limited to 'src/libstd/sys/windows')
| -rw-r--r-- | src/libstd/sys/windows/env.rs | 19 | ||||
| -rw-r--r-- | src/libstd/sys/windows/mod.rs | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/libstd/sys/windows/env.rs b/src/libstd/sys/windows/env.rs new file mode 100644 index 00000000000..e6d74895774 --- /dev/null +++ b/src/libstd/sys/windows/env.rs @@ -0,0 +1,19 @@ +// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +pub mod os { + pub const FAMILY: &'static str = "windows"; + pub const OS: &'static str = "windows"; + pub const DLL_PREFIX: &'static str = ""; + pub const DLL_SUFFIX: &'static str = ".dll"; + pub const DLL_EXTENSION: &'static str = "dll"; + pub const EXE_SUFFIX: &'static str = ".exe"; + pub const EXE_EXTENSION: &'static str = "exe"; +} diff --git a/src/libstd/sys/windows/mod.rs b/src/libstd/sys/windows/mod.rs index 21404f4fbeb..c31726a4a25 100644 --- a/src/libstd/sys/windows/mod.rs +++ b/src/libstd/sys/windows/mod.rs @@ -22,6 +22,7 @@ pub mod backtrace; pub mod c; pub mod condvar; pub mod dynamic_lib; +pub mod env; pub mod ext; pub mod fs; pub mod handle; |
