Mobile Communication Direct

製図要素テキストを編集


サンプル

#include	<uf_drf.h>
#include	<uf_drf_errors.h>
#include	<uf_drf_types.h>

void	Func1(tag_t tObj, int nCount, char aszText[][133])
{

	int	ret;

	ret = uc5566(tObj, 1, nCount, aszText);
	if(ret != 1){throw "ERROR";}

	/*
	リターンコード:
	1 = 成功
	2 = 失敗
	3 = 入力された要素IDが0
	4 = 1行内のテキストが長すぎる
	5 = 文字数が多すぎる
	*/

	return;

}