You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
416 B
Go
25 lines
416 B
Go
6 years ago
|
package win32api
|
||
|
|
||
|
type SHELLEXECUTEINFOW struct {
|
||
|
cbSize DWORD
|
||
|
fMask ULONG
|
||
|
hwnd HWND
|
||
|
lpVerb string
|
||
|
lpFile string
|
||
|
lpParameters string
|
||
|
lpDirectory string
|
||
|
nShow int
|
||
|
hInstApp HINSTANCE
|
||
|
lpIDList LPVOID
|
||
|
lpClass string
|
||
|
hkeyClass HKEY
|
||
|
dwHotKey DWORD
|
||
|
union UNION
|
||
|
hProcess HANDLE
|
||
|
}
|
||
|
|
||
|
type UNION struct {
|
||
|
hIcon HANDLE
|
||
|
hMonitor HANDLE
|
||
|
}
|