(dwMessage uint32, lpdata *NOTIFYICONDATA)
| 150 | } |
| 151 | |
| 152 | func Shell_NotifyIcon(dwMessage uint32, lpdata *NOTIFYICONDATA) bool { |
| 153 | ret, _, _ := syscall.Syscall(shell_NotifyIcon, 2, |
| 154 | uintptr(dwMessage), |
| 155 | uintptr(unsafe.Pointer(lpdata)), |
| 156 | 0) |
| 157 | |
| 158 | return ret != 0 |
| 159 | } |
no outgoing calls
no test coverage detected