WSMessageHandlerObject (C 関数)
WSLINK,int,intの3つの引数を取って,緊急メッセージハンドラ(処理)を実行するvoidを返す関数に,関数ポインタを表現するWSTPのタイプである.
詳細
- WSTPが接続の向こう側から緊急のメッセージを受けると,緊急メッセージハンドラ関数が呼び出される.
- WSMessageHandlerObjectは,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
/* handle three common WSTP urgent messages */
void f(WSLINK lp, int msg, int arg)
{
if(msg == WSInterruptMessage)
{ /* generate an interrupt menu */ }
else if(msg == WSAbortMessage)
{ /* abort the current operation */ }
else if(msg == WSTerminateMessage)
{ /* shutdown the program */ }
/* ... */
}
int main(int argc, char **argv)
{
WSENV env;
WSLINK link;
int error;
env = WSInitialize((WSEnvironmentParameter)0);
if(env == (WSENV)0)
{ /* unable to initialize WSTP environment */ }
link = WSOpenArgcArgv(env, argc, argv, &error);
if(link == (WSLINK)0 || error != WSEOK)
{ /* unable to create link */ }
if(! WSSetMessageHandler(link, (WSMessageHandlerObject)f)
{ /* unable to install message handler for link */ }
/* ... */
WSClose(link);
WSDeinitialize(env);
return 0;
}