#module
#undef noteget
#defcfunc noteget var buf,int idx,local temp
notesel buf
noteget@hsp temp,idx
noteunsel
return temp
#undef exist
#defcfunc exist str fn
exist@hsp fn
return strsize
#global
x="A\nB\nC"
mes noteget(x,0)
mes noteget(x,1)
mes noteget(x,2)
#define FILE_NAME "dum.txt"
if exist(FILE_NAME) = -1{
dialog "FileNotFound"
end
}
mes FILE_NAME
使い難いだけなら自分で関数を作っちゃえば良いと思う
(どっかに命令を関数に換えたのが色々有ったような・・・)