mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
11 lines
247 B
Plaintext
11 lines
247 B
Plaintext
#import <AppKit/AppKit.h>
|
|
#include "trayhandler.h"
|
|
|
|
void OSXShowDockIcon()
|
|
{
|
|
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
|
|
}
|
|
void OSXHideDockIcon()
|
|
{
|
|
[NSApp setActivationPolicy:NSApplicationActivationPolicyAccessory];
|
|
} |