1 Star 3 Fork 0

狼浪/go-dmsoft

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base.go 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
清风千年 提交于 2020-05-18 19:27 . 小修改
package dmsoft
func (com *DmSoft) EnablePicCache(enable int) int {
ret, _ := com.dm.CallMethod("EnablePicCache", enable)
return int(ret.Val)
}
func (com *DmSoft) GetBasePath() string {
ret, _ := com.dm.CallMethod("GetBasePath")
return ret.ToString()
}
func (com *DmSoft) GetDmCount() int {
ret, _ := com.dm.CallMethod("GetDmCount")
return int(ret.Val)
}
func (com *DmSoft) GetID() int {
ret, _ := com.dm.CallMethod("GetID")
return int(ret.Val)
}
func (com *DmSoft) GetLastError() int {
ret, _ := com.dm.CallMethod("GetLastError")
return int(ret.Val)
}
func (com *DmSoft) GetPath() string {
ret, _ := com.dm.CallMethod("GetPath")
return ret.ToString()
}
func (com *DmSoft) Reg(regCode string, verInfo string) int {
ret, _ := com.dm.CallMethod("Reg", regCode, verInfo)
return int(ret.Val)
}
func (com *DmSoft) RegEx(regCode, verInfo, ip string) int {
ret, _ := com.dm.CallMethod("RegEx", regCode, verInfo, ip)
return int(ret.Val)
}
func (com *DmSoft) RegExNoMac(regCode, verInfo, ip string) int {
ret, _ := com.dm.CallMethod("RegExNoMac", regCode, verInfo, ip)
return int(ret.Val)
}
func (com *DmSoft) RegNoMac(regCode, verInfo, ip string) int {
ret, _ := com.dm.CallMethod("RegNoMac", regCode, verInfo, ip)
return int(ret.Val)
}
func (com *DmSoft) SetDisplayInput(mode string) int {
ret, _ := com.dm.CallMethod("SetDisplayInput", mode)
return int(ret.Val)
}
func (com *DmSoft) SetEnumWindowDelay(delay int) int {
ret, _ := com.dm.CallMethod("SetEnumWindowDelay", delay)
return int(ret.Val)
}
func (com *DmSoft) SetPath(path string) int {
ret, _ := com.dm.CallMethod("SetPath", path)
return int(ret.Val)
}
func (com *DmSoft) SetShowErrorMsg(show int) int {
ret, _ := com.dm.CallMethod("SetShowErrorMsg", show)
return int(ret.Val)
}
func (com *DmSoft) SpeedNormalGraphic(enable int) int {
ret, _ := com.dm.CallMethod("SpeedNormalGraphic", enable)
return int(ret.Val)
}
// Ver get version
func (com *DmSoft) Ver() string {
ver, _ := com.dm.CallMethod("Ver")
return ver.ToString()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zphiex/go-dmsoft.git
git@gitee.com:zphiex/go-dmsoft.git
zphiex
go-dmsoft
go-dmsoft
master

搜索帮助