• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

12半音階によるトーン生成


File Info

Rev. 05c64c80a10b324b375562a6070f403efa4d0028
Size 1,317 bytes
Time 2013-06-03 23:41:51
Author suikan
Log Message

最初のコミット

Content

/**
 * @file cmd.h
 * @author Shinichiro Nakamura
 * @brief コマンドの定義。
 * @details
 */

#ifndef CMD_H
#define CMD_H

#include "ntshell.h"
#include "ntstdio.h"

/**
 * @brief コマンド環境構造体からシェルモジュールハンドラを取得する。
 * @parma ENV コマンド環境構造体。
 * @return シェルモジュールハンドラ。
 */
#define CMD_NTSHELL(ENV)    (&((ENV)->ntshell))

/**
 * @brief コマンド環境構造体から標準入出力モジュールハンドラを取得する。
 * @parma ENV コマンド環境構造体。
 * @return 標準入出力モジュールハンドラ。
 */
#define CMD_NTSTDIO(ENV)    (&((ENV)->ntstdio))

/**
 * @brief コマンド環境構造体。
 */
typedef struct {
    ntshell_t ntshell;  /**< シェルモジュールハンドラ */
    ntstdio_t ntstdio;  /**< 標準入出力モジュールハンドラ */
} cmd_env_t;

/**
 * @brief コマンド関数。
 * @details
 * ntshell_taskを使用するBSPは、cmd_executeの実装を提供する。
 * VT100のシーケンスコード解釈や環境設定は上位で行われている。
 *
 * @param env コマンド環境構造体。
 * @param argc パラメータ数。
 * @param argv パラメータ。
 */
void cmd_execute(cmd_env_t *env, int argc, char **argv);

#endif