Add missing io.Stream_Mode responses

This commit is contained in:
Feoramund
2024-08-18 23:03:07 -04:00
committed by Laytan
parent eb6e5ee3a1
commit 981a2e1a00
4 changed files with 4 additions and 4 deletions

View File

@@ -402,7 +402,7 @@ _buffer_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte, offse
buffer_destroy(b)
return
case .Query:
return io.query_utility({.Read, .Read_At, .Write, .Write_At, .Size, .Destroy})
return io.query_utility({.Read, .Read_At, .Write, .Write_At, .Size, .Destroy, .Query})
}
return 0, .Empty
}