mirror of
https://github.com/containers/skopeo.git
synced 2025-08-29 03:22:43 +00:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.26.0 to 1.29.0. - [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.26.0...v1.29.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
13 lines
583 B
Go
13 lines
583 B
Go
package winapi
|
|
|
|
// HANDLE CreateRemoteThread(
|
|
// HANDLE hProcess,
|
|
// LPSECURITY_ATTRIBUTES lpThreadAttributes,
|
|
// SIZE_T dwStackSize,
|
|
// LPTHREAD_START_ROUTINE lpStartAddress,
|
|
// LPVOID lpParameter,
|
|
// DWORD dwCreationFlags,
|
|
// LPDWORD lpThreadId
|
|
// );
|
|
//sys CreateRemoteThread(process windows.Handle, sa *windows.SecurityAttributes, stackSize uint32, startAddr uintptr, parameter uintptr, creationFlags uint32, threadID *uint32) (handle windows.Handle, err error) = kernel32.CreateRemoteThread
|