From 1fa740cacc1b63bac89b464e4b849a8069fb201b Mon Sep 17 00:00:00 2001 From: vcaesar Date: Sun, 15 Dec 2019 17:27:53 -0400 Subject: [PATCH] update godoc --- robotgo.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/robotgo.go b/robotgo.go index baf0ccf..2beca4f 100644 --- a/robotgo.go +++ b/robotgo.go @@ -760,7 +760,7 @@ func UnicodeType(str uint32) { } // TypeString send a string, support unicode -// TypeStr(string: The string to send) +// TypeStr(string: The string to send), Wno-deprecated func TypeString(str string) { cstr := C.CString(str) C.type_string(cstr) @@ -778,7 +778,7 @@ func PasteStr(str string) { } } -// TypeStrDelay type string delayed +// TypeStrDelay type string delayed, Wno-deprecated func TypeStrDelay(str string, delay int) { cstr := C.CString(str) cdelay := C.size_t(delay)