MCPcopy Create free account
hub / github.com/rabbitstack/fibratus / ShellNotifyIcon

Function ShellNotifyIcon

pkg/sys/zsyscall_windows.go:285–291  ·  view source on GitHub ↗
(msg NotifyIconMessage, data *NotifyIconData)

Source from the content-addressed store, hash-verified

283}
284
285func 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
293func pathIsDirectory(path *uint16) (isDirectory bool) {
294 r0, _, _ := syscall.Syscall(procPathIsDirectoryW.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0)

Callers 5

NewSystrayIconFunction · 0.85
SetIconMethod · 0.85
SetTooltipMethod · 0.85
DeleteMethod · 0.85

Calls 1

errnoErrFunction · 0.70

Tested by

no test coverage detected