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>
12 lines
402 B
Go
12 lines
402 B
Go
package winapi
|
|
|
|
// VOID RtlMoveMemory(
|
|
// _Out_ VOID UNALIGNED *Destination,
|
|
// _In_ const VOID UNALIGNED *Source,
|
|
// _In_ SIZE_T Length
|
|
// );
|
|
//sys RtlMoveMemory(destination *byte, source *byte, length uintptr) (err error) = kernel32.RtlMoveMemory
|
|
|
|
//sys LocalAlloc(flags uint32, size int) (ptr uintptr) = kernel32.LocalAlloc
|
|
//sys LocalFree(ptr uintptr) = kernel32.LocalFree
|