Files
kematianc2/Kematian-Standalone/native/recovery/platform/lockedfile_stub.go
T
2026-08-27 11:23:01 -06:00

12 lines
180 B
Go

//go:build !windows
package platform
import "os"
func ReadLockedFile(srcPath string, pids []uint32) ([]byte, error) {
return os.ReadFile(srcPath)
}
func ResetHandleCache() {}