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
467 B
Go
25 lines
467 B
Go
package win32api
|
|
|
|
type SHELLEXECUTEINFOW struct {
|
|
CbSize DWORD
|
|
FMask ULONG
|
|
Hwnd HWND
|
|
LpVerb uintptr
|
|
LpFile uintptr
|
|
LpParameters uintptr
|
|
LpDirectory uintptr
|
|
NShow int
|
|
HInstApp HINSTANCE
|
|
LpIDList LPVOID
|
|
LpClass uintptr
|
|
HkeyClass HKEY
|
|
DwHotKey DWORD
|
|
UnionorHMonitor HANDLE
|
|
HProcess HANDLE
|
|
}
|
|
|
|
type UNION struct {
|
|
HIcon HANDLE
|
|
HMonitor HANDLE
|
|
}
|