WSPutMessage (C 函数)
int WSPutMessage(WSLINK link,int msg)
把消息 msg 发送给链接对象 link.
范例
基本范例 (1)
#include "wstp.h"
/* send an abort message to a link */
void f(WSLINK lp)
{
if(! WSPutMessage(lp, WSAbortMessage))
{ /* unable to send message to lp */ }
}