This commit is contained in:
Milan Nikolic 2023-11-12 17:21:56 +01:00
parent cca4bb4659
commit 61a393d4ce
No known key found for this signature in database
GPG key ID: 9229D0EAA3AA4E75
8 changed files with 110 additions and 111 deletions

View file

@ -43,6 +43,7 @@ func HideCursor() {
func IsCursorHidden() bool {
ret := C.IsCursorHidden()
v := bool(ret)
return v
}
@ -50,6 +51,7 @@ func IsCursorHidden() bool {
func IsCursorOnScreen() bool {
ret := C.IsCursorOnScreen()
v := bool(ret)
return v
}
@ -67,6 +69,7 @@ func DisableCursor() {
func IsFileDropped() bool {
ret := C.IsFileDropped()
v := bool(ret)
return v
}
@ -94,5 +97,6 @@ func OpenAsset(name string) (Asset, error) {
if err != nil {
return nil, err
}
return f, nil
}