예제 #1
0
파일: capi.go 프로젝트: e154/coffee-break
func (t SystemTray) SetIcon(img string)                       { C.SetTrayIcon((t.addr), C.CString(img)) }
예제 #2
0
파일: capi.go 프로젝트: e154/go-snipets
func (t SystemTray) SetIcon(img string) {
	C.SetTrayIcon(t.ptr, C.CString(img))
}
예제 #3
0
파일: capi.go 프로젝트: e154/go-snipets
func (i SystemTray) SetTrayIcon(img string) {
	C.SetTrayIcon(i.ptr, C.CString(img))
}