mirror of
https://github.com/GoogleContainerTools/kaniko.git
synced 2026-05-16 13:20:33 +00:00
6bbd8a331c
``` * use go 1.17 semantics in go.mod * pin tonistiigi/fsutil dep to match docker/docker's dep go get -u ./... go mod vendor ```
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
|