mudiziqi 发表于 2014-7-31 17:04:35

silk performer怎么样调用DLL

各位大神,小弟现在做的项目,需要从silk performer调用外部DLL。

以下是.net调用该DLL的代码:
wsServerAddrInfo addr = new wsServerAddrInfo();
addr.Addr = "localhost";
addr.Port = 2010;

wsClientInterface client = wsClientManager.ConnectServer(addr);
client.Timeout = 10;

wsLoginInfo login = new wsLoginInfo();
login.LoginID = "aa";
login.Password = "aa";

wsSession Session = client.Login(login);

silk performer里面该怎么样来实现这样的调用呢?
谢谢!
页: [1]
查看完整版本: silk performer怎么样调用DLL