mirror of
https://github.com/containers/podman.git
synced 2025-11-14 18:19:20 +08:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.24.3 to 1.24.4. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.24.3...v1.24.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
16 lines
364 B
Go
16 lines
364 B
Go
package winapi
|
|
|
|
import "syscall"
|
|
|
|
//sys RtlNtStatusToDosError(status uint32) (winerr error) = ntdll.RtlNtStatusToDosError
|
|
|
|
const (
|
|
STATUS_REPARSE_POINT_ENCOUNTERED = 0xC000050B
|
|
ERROR_NO_MORE_ITEMS = 0x103
|
|
ERROR_MORE_DATA syscall.Errno = 234
|
|
)
|
|
|
|
func NTSuccess(status uint32) bool {
|
|
return status == 0
|
|
}
|