Created
December 7, 2013 04:02
-
-
Save TomLiu/7837127 to your computer and use it in GitHub Desktop.
Mac App toggle dock icon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//hide dock icon | |
ProcessSerialNumber psn = { 0, kCurrentProcess }; | |
TransformProcessType(&psn, kProcessTransformToUIElementApplication); | |
//show dock icon | |
ProcessSerialNumber psn = { 0, kCurrentProcess }; | |
TransformProcessType(&psn, kProcessTransformToForegroundApplication); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment