Go语言:获取桌面工作区高度
2019-09-27 本文已影响0人
白祤星
代码实例:
package main
/*
#include <windows.h>
int workAreaHeight() {
RECT rt;
SystemParametersInfo(SPI_GETWORKAREA, 0, (PVOID)&rt, 0);
return rt.bottom;
}
*/
import "C"
func main() {
waheight := int(C.workAreaHeight())
println(waheight)
}