マクロコマンド

DEFINE FUNCTION macro_name AS rettype function_name(args)

Define a function prototype for a function named macro_name which has its value of type rettype computed from the execution function_name with the arguments args declared in a C-like manner.

C の様な形式で宣言された args 引数で function_name を実行して出来た rettype 型の値を持った macro_name 名の関数に対する関数プロトタイプを定義します。

DEFINE MACRO macro_name FROM FILE filename

Define a macro named macro_name which has its value read from the file called filename.

filename 名のフィールドから読み込まれた値を持つ macro_name 名のマクロを定義します。