add Windows taskbar control buttons (TODO: icons)
This commit is contained in:
committed by
Drew Weymouth
parent
21edd38f38
commit
aedaa32de4
@@ -0,0 +1,16 @@
|
||||
//go:build windows
|
||||
|
||||
package windows
|
||||
|
||||
/*
|
||||
void btn_callback_cgo(int in) {
|
||||
void btnCallback(int);
|
||||
btnCallback(in);
|
||||
}
|
||||
|
||||
void seek_callback_cgo(int in) {
|
||||
void seekCallback(int);
|
||||
seekCallback(in);
|
||||
}
|
||||
*/
|
||||
import "C"
|
||||
Reference in New Issue
Block a user