win32api/shell32typedef.go

25 lines
467 B
Go
Raw Normal View History

2018-10-14 17:58:47 +08:00
package win32api
type SHELLEXECUTEINFOW struct {
2019-03-11 14:54:38 +08:00
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
2018-10-14 17:58:47 +08:00
}
type UNION struct {
2019-03-11 14:54:38 +08:00
HIcon HANDLE
HMonitor HANDLE
2018-10-14 17:58:47 +08:00
}