mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Open stash in system tray on Windows/MacOS * Add desktop notifications * MacOS Bundling * Add binary icon Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
9 lines
168 B
Go
9 lines
168 B
Go
package w32
|
|
|
|
const (
|
|
WAIT_ABANDONED = 0x00000080
|
|
WAIT_OBJECT_0 = 0x00000000
|
|
WAIT_TIMEOUT = 0x00000102
|
|
WAIT_FAILED = 0xFFFFFFFF
|
|
INFINITE = 0xFFFFFFFF
|
|
)
|