summaryrefslogtreecommitdiffhomepage
path: root/talpid-windows/src/lib.rs
blob: 27ddd877c2470a167ab17e5f5aa2dfcf3407a45e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Interface with low-level Windows-specific bits.

#![deny(missing_docs)]
#![cfg(windows)]

/// Environment
pub mod env;

/// File system
pub mod fs;

/// I/O
pub mod io;

/// Networking
pub mod net;

/// Synchronization
pub mod sync;

/// Processes
pub mod process;

/// String functions
pub mod string;