-
Notifications
You must be signed in to change notification settings - Fork 172
install
qiannian edited this page Apr 24, 2024
·
4 revisions
插件和配套工具可在这里获得 Github
把注册插件到系统
把下载下来的插件解压后,选中文件目录中的:install.bat
右击以管理员的身份运行
手动使用 cmd 命令行进行注册
cd /d op路径
regsvr32 op_x86.dll
在插件目录中找到 tool.dll 和 tools_64.dll 文件, 此文件导出 2 函数
setupA(path)
: A 表示 ANSI 字符集,使用 ANSI 字符编码
setupW(path)
: W 表示宽字符集,使用 Unicode 字符编码
参数 | 类型 | 描述 |
---|---|---|
path | string | 指定 op.dll 的路径。 |
返回值
类型:int
- 0:表示操作失败。
- 1:表示操作成功。
示例一
int result = setupW(L"./op_x64.dll");
if (result == 0) {
printf("加载 op_x64 文件失败!");
} else {
printf("加载 op_x64文件成功!");
}
示例二
from ctypes import *
from win32com.client import Dispatch
# 加载免注册dll
dll = windll.LoadLibrary("./tools_64.dll")
# 调用setupW函数
result = dll.setupW("./op_x64.dll")
# 如果result不等于1,则执行失败
if result != 1:
exit(0)
# 创建对象
op = Dispatch("op.opsoft")
# print version of op 打印op插件的版本
print(op.Ver())
C# 免注册
暂无