Files
wazero/internal/fsapi/constants_js.go
Crypt Keeper 34324031cb extracts FS interfaces into fsapi package and consolidates impls (#1477)
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Edoardo Vacchi <evacchi@users.noreply.github.com>
Co-authored-by: Edoardo Vacchi <evacchi@users.noreply.github.com>
2023-05-17 07:19:54 +03:00

9 lines
160 B
Go

package fsapi
// See the comments on the same constants in constants_windows.go
const (
O_DIRECTORY = 1 << 29
O_NOFOLLOW = 1 << 30
O_NONBLOCK = 1 << 31
)