blob: 279d3a2341a294ac3559ea92f6cc35f219c6c8da (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 13 december 2015
package ui
// #cgo LDFLAGS: -L${SRCDIR} -lui
import "C"
func ensureMainThread() {
// do nothing; Windows doesn't care which thread we're on so long as we don't change it after starting
}
|