mirror of
https://gitee.com/energye/energy.git
synced 2024-11-29 18:28:06 +08:00
U: winapi Change some function parameters to pointer pass
This commit is contained in:
parent
466b925353
commit
d9791d3b62
@ -145,13 +145,13 @@ func OnPaint(handle types.HWND) {
|
||||
// imports.Proc(def.CEF_Win_SetDraggableRegions).Call(aRGN.Instance(), uintptr(int32(len(regions))), uintptr(unsafe.Pointer(®ions[0])), uintptr(int32(len(regions))))
|
||||
//}
|
||||
|
||||
func EndPaint(Handle types.HWND, PS types.TagPaintStruct) types.Integer {
|
||||
r1, _, _ := imports.Proc(def.CEF_Win_EndPaint).Call(uintptr(Handle), uintptr(unsafe.Pointer(&PS)))
|
||||
func EndPaint(Handle types.HWND, PS *types.TagPaintStruct) types.Integer {
|
||||
r1, _, _ := imports.Proc(def.CEF_Win_EndPaint).Call(uintptr(Handle), uintptr(unsafe.Pointer(PS)))
|
||||
return types.Integer(r1)
|
||||
}
|
||||
|
||||
func BeginPaint(Handle types.HWND, PS types.TagPaintStruct) types.HDC {
|
||||
r1, _, _ := imports.Proc(def.CEF_Win_BeginPaint).Call(uintptr(Handle), uintptr(unsafe.Pointer(&PS)))
|
||||
func BeginPaint(Handle types.HWND, PS *types.TagPaintStruct) types.HDC {
|
||||
r1, _, _ := imports.Proc(def.CEF_Win_BeginPaint).Call(uintptr(Handle), uintptr(unsafe.Pointer(PS)))
|
||||
return types.HDC(r1)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user