(msg NotifyIconMessage, data *NotifyIconData)
| 283 | } |
| 284 | |
| 285 | func ShellNotifyIcon(msg NotifyIconMessage, data *NotifyIconData) (err error) { |
| 286 | r1, _, e1 := syscall.Syscall(procShell_NotifyIconW.Addr(), 2, uintptr(msg), uintptr(unsafe.Pointer(data)), 0) |
| 287 | if r1 == 0 { |
| 288 | err = errnoErr(e1) |
| 289 | } |
| 290 | return |
| 291 | } |
| 292 | |
| 293 | func pathIsDirectory(path *uint16) (isDirectory bool) { |
| 294 | r0, _, _ := syscall.Syscall(procPathIsDirectoryW.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0) |
no test coverage detected