Created
September 18, 2020 12:33
-
-
Save AlexeyGy/7ac4c3b29113db5100d52d3ff488ebb3 to your computer and use it in GitHub Desktop.
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
import ( | |
"bytes" | |
"fmt" | |
"strings" | |
"syscall" | |
"time" | |
"unsafe" | |
) | |
func main() { | |
user32 := syscall.MustLoadDLL("user32") | |
defer user32.Release() | |
registerHotkeys(user32) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment