package asifutil
import (
"errors"
"os"
)
var ErrASIFNotSupported = errors.New("ASIF is only supported on macOS")
func NewAttachedASIF(_ string, _ int64) (string, *os.File, error) {
return "", nil, ErrASIFNotSupported
}
func DetachASIF(_ string) error {
return ErrASIFNotSupported
}
func ResizeASIF(_ string, _ int64) error {
return ErrASIFNotSupported
}