32 return fp(a, b, result);
37 console_output(
"sample_func: a=%d, b=%d の処理 (*result = a + b;) を行います\n", a, b);
funcman_object *const pfo_sample_func
sample_func に対応する funcman オブジェクトへのポインタ。
funcman が管理する関数ポインタの extern 定義。
int(* sample_func_t)(const int, const int, int *)
sample_func に対応する関数ポインタの型定義。
ベースライブラリ (動的リンク用) のヘッダーファイル。
BASE_EXPORT void BASE_API console_output(const char *format,...)
printf と同じ書式でコンソールに出力します。
#define BASE_API
呼び出し規約マクロ。
int BASE_API sample_func(const int a, const int b, int *result)
計算処理を行います。