bool IsLibrariesAllowed( )
如果智能交易允许调用库函数,返回TRUE 。否则,返回FALSE。 参见 IsDllsAllowed(), IsTradeAllowed().
示例:
- #import "somelibrary.ex4"
- int somefunc();
- ...
- ...
- if(IsLibrariesAllowed()==false)
- {
- Print("不允许调库函数");
- return(0);
- }
- // 智能交易调用外部 DLL 函数
- somefunc();
复制代码
|