This is Webservice SDK for mbed. LPCXpresso1769/LPC1768/FRDM-K64F/LPC4088

Dependents:   MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more

Embed: (wiki syntax)

« Back to documentation index

NyLPC_TJsonRpcMethodDef Struct Reference

NyLPC_TJsonRpcMethodDef Struct Reference

JSON RPC定義テーブルの一要素。 メソッド名とパラメータパターンのセットを定義します。 この構造体は配列としてNyLPC_TJsonRpcFunctionTableから参照されます。 More...

#include <NyLPC_cJsonRpcParser.h>

Data Fields

const char * name
 関数名
const char * param_patt
 パラメータパターン
NyLPC_TJsonRpcHandler handler
 外部のDispatch関数で使われるRPC関数ハンドラ。

Detailed Description

JSON RPC定義テーブルの一要素。 メソッド名とパラメータパターンのセットを定義します。 この構造体は配列としてNyLPC_TJsonRpcFunctionTableから参照されます。

Definition at line 32 of file NyLPC_cJsonRpcParser.h.


Field Documentation

NyLPC_TJsonRpcHandler handler

外部のDispatch関数で使われるRPC関数ハンドラ。

Definition at line 52 of file NyLPC_cJsonRpcParser.h.

const char* name

関数名

Definition at line 37 of file NyLPC_cJsonRpcParser.h.

const char* param_patt

パラメータパターン

  • s - 文字列
  • i - signed int32
  • u - unsigned int32
  • b - unsigned int8
  • B - BSTR (string ByteArray)

Definition at line 48 of file NyLPC_cJsonRpcParser.h.