- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 77
Open
Labels
Description
The compilation parameters are as follows:
$env:GOARCH="amd64";
$env:GOOS="windows";
$env:GOARCH="386"; # 32
#$env:GOARCH="amd64"; # 64
and the program will be stucked at line 324 in the file clipborad_windows.go:
println("test in read 2")
// try again until open clipboard successed
   // will stuck here
for {
	r, _, _ = openClipboard.Call()
	if r == 0 {
		continue
	}
	break
}
    //  the following code will not be executed.
println("test in read 3")