WSReleaseUCS2ErrorMessage (C 関数)
void WSReleaseUCS2ErrorMessage(WSLINK l, const unsigned short *m, int n)
WSUCS2ErrorMessage()によって割り当てられ,長さ n のUCS2 文字の配列である m に保存されたメモリを解放する.
詳細
- メッセージ m を保持するために使われたメモリは,WSUCS2ErrorMessage()への呼出しによって割り当てられたものでなければならない.
- WSReleaseUCS2ErrorMessage()は,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
/* A function for getting the error message from a link */
void f(WSLINK l)
{
const unsigned short *message;
int length;
message = WSUCS2ErrorMessage(l, &length);
if(message == (const unsigned short *)0 || length == 0)
{ /* Unable to get the error message from the link */ }
/* ... */
WSReleaseUCS2ErrorMessage(l, message, length);
}