initial implementation of Windows SMTC integration

This commit is contained in:
Drew Weymouth
2025-01-15 17:42:44 -08:00
parent 6d4d87cb66
commit cb01703776
5 changed files with 282 additions and 15 deletions
+16
View File
@@ -0,0 +1,16 @@
//go:build windows
package backend
/*
void btn_callback_cgo(int in) {
void btnCallback(int);
btnCallback(in);
}
void seek_callback_cgo(int in) {
void seekCallback(int);
seekCallback(in);
}
*/
import "C"