Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
windows stats
  • Loading branch information
youknowone committed Dec 7, 2025
commit e3f74fa1da1fd60fbde5769bac97cc1edc2e2999
11 changes: 11 additions & 0 deletions crates/vm/src/stdlib/stat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,17 @@ mod stat {
FILE_ATTRIBUTE_TEMPORARY, FILE_ATTRIBUTE_VIRTUAL,
};

// Windows reparse point tags
#[cfg(windows)]
#[pyattr]
pub const IO_REPARSE_TAG_SYMLINK: u32 = 0xA000000C;
#[cfg(windows)]
#[pyattr]
pub const IO_REPARSE_TAG_MOUNT_POINT: u32 = 0xA0000003;
#[cfg(windows)]
#[pyattr]
pub const IO_REPARSE_TAG_APPEXECLINK: u32 = 0x8000001B;

// Unix file flags (if on Unix)

#[pyattr]
Expand Down