测试文件保护驱动通信 - ProtectFileTestDriver
函数简介
测试文件保护驱动通信是否正常。(高级版功能,普通版无法使用)
接口名称
ProtectFileTestDriver
DLL调用
int32_t ProtectFileTestDriver(int64_t instance);
参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| instance | 长整数型 | OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。 |
示例
int64_t instance = CreateCOLAPlugInterFace();
int32_t ok = ProtectFileTestDriver(instance);
printf("ProtectFileTestDriver: %d\n", ok);
DestroyCOLAPlugInterFace(instance);
返回值
1 成功,其他失败。
注意事项
- 用于验证文件保护驱动是否正常工作。
