WSReleaseLinkProtocolNames (C 函数)
void WSReleaseLinkProtocolNames( WSENV env , char ** n , int l )
释放存储在 n 中的链接协议,l 中的列表长度,由 WSGetAvailableLinkProtocolNames() 分配的内存.
更多信息
- 名称列表 n 必须来自于 WSGetAvailableLinkProtocolNames() 的调用.
- WSTP 的标头文件 wstp.h. 已对 WSReleaseLinkProtocolNames() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* A function for retrieving the available link protocols */
void f(WSENV env)
{
const char **protocols;
int length;
int apiResult;
apiResult = WSGetAvailableLinkProtocolNames(env, &protocols, &length);
if(apiResult != 0)
{ /* Unable to get list of protocols from environment */ }
/* ... */
WSReleaseLinkProtocolNames(env, protocols, length);
}