Update New API\
parent
40b9dba9f0
commit
739e939fc3
@ -0,0 +1,17 @@
|
||||
package win32api
|
||||
|
||||
type Ulong int32
|
||||
type Ulong_ptr uintptr
|
||||
|
||||
type PROCESSENTRY32 struct {
|
||||
DwSize Ulong
|
||||
CntUsage Ulong
|
||||
Th32ProcessID Ulong
|
||||
Th32DefaultHeapID Ulong_ptr
|
||||
Th32ModuleID Ulong
|
||||
CntThreads Ulong
|
||||
Th32ParentProcessID Ulong
|
||||
PcPriClassBase Ulong
|
||||
DwFlags Ulong
|
||||
SzExeFile [260]byte
|
||||
}
|
@ -1,24 +1,24 @@
|
||||
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
|
||||
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
|
||||
HIcon HANDLE
|
||||
HMonitor HANDLE
|
||||
}
|
||||
|
Loading…
Reference in New Issue