Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows stats::st_mode and stat flags type. #3625

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/windows/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ s! {
pub struct stat {
pub st_dev: dev_t,
pub st_ino: ino_t,
pub st_mode: u16,
pub st_mode: c_ushort,
pub st_nlink: ::c_short,
pub st_uid: ::c_short,
pub st_gid: ::c_short,
Expand Down Expand Up @@ -142,13 +142,13 @@ pub const _O_OBTAIN_DIR: ::c_int = 0x2000;
pub const O_SEQUENTIAL: ::c_int = 0x0020;
pub const O_RANDOM: ::c_int = 0x0010;

pub const S_IFCHR: ::c_int = 0o2_0000;
pub const S_IFDIR: ::c_int = 0o4_0000;
pub const S_IFREG: ::c_int = 0o10_0000;
pub const S_IFMT: ::c_int = 0o17_0000;
pub const S_IEXEC: ::c_int = 0o0100;
pub const S_IWRITE: ::c_int = 0o0200;
pub const S_IREAD: ::c_int = 0o0400;
pub const S_IFCHR: ::c_ushort = 0o2_0000;
pub const S_IFDIR: ::c_ushort = 0o4_0000;
pub const S_IFREG: ::c_ushort = 0o10_0000;
pub const S_IFMT: ::c_ushort = 0o17_0000;
pub const S_IEXEC: ::c_ushort = 0o0100;
pub const S_IWRITE: ::c_ushort = 0o0200;
pub const S_IREAD: ::c_ushort = 0o0400;

pub const LC_ALL: ::c_int = 0;
pub const LC_COLLATE: ::c_int = 1;
Expand Down