「templateAPIWiki ライブラリ(API)を書くためのテンプレート」の版間の差分

提供: Eospedia
移動: 案内検索
(ページの作成:「Class/Object/'''Action'''はYYYYするためのAPIです。 == 定数 == 定数の説明 #define ... typedef enum ... { ... } <table border="1"> <tr> <th>...」)
 
 
行48: 行48:
 
</tr>  
 
</tr>  
 
</table>  
 
</table>  
 +
<br>
 +
 +
コピー用<br>
 +
<pre>
 +
Class/Object/'''Action'''はYYYYするためのAPIです。
 +
 +
== 定数 ==
 +
定数の説明
 +
#define ...
 +
typedef enum ... {
 +
      ...
 +
}
 +
 +
<table border="1">
 +
<tr>
 +
<th>モード</th>
 +
<th>値</th>
 +
<th>説明</th>
 +
</tr>
 +
<tr>
 +
<td>...</td>
 +
<td>0</td>
 +
<td></td>
 +
</tr>
 +
</table>
 +
<br>
 +
 +
== 構造体 ==
 +
構造体の説明
 +
typedef ...
 +
typedef struct ... {
 +
      ...
 +
} ...
 +
 +
 +
== API ==
 +
=== 処理 ===
 +
APIの説明
 +
Type Function(Argument, ...)
 +
 +
モードによって処理が異なる場合は表で説明
 +
<table border="1">
 +
<tr>
 +
<th>モード</th>
 +
<th>関数名</th>
 +
<th>説明</th>
 +
</tr>
 +
<tr>
 +
<td>+1</td>
 +
<td></td>
 +
<td></td>
 +
</tr>
 +
</table>
 +
<br>
 +
 +
</pre>
 
<br>
 
<br>

2014年12月9日 (火) 04:09時点における最新版

Class/Object/ActionはYYYYするためのAPIです。

定数

定数の説明

#define ...
typedef enum ... {
     ...
}
モード 説明
... 0


構造体

構造体の説明

typedef ...
typedef struct ... {
     ...
} ...


API

処理

APIの説明

Type Function(Argument, ...)

モードによって処理が異なる場合は表で説明

モード 関数名 説明
+1


コピー用

Class/Object/'''Action'''はYYYYするためのAPIです。

== 定数 ==
定数の説明
 #define ...
 typedef enum ... {
      ...
 }

<table border="1">
	<tr> 
		<th>モード</th> 
		<th>値</th> 
		<th>説明</th> 
	</tr> 
	<tr> 
		<td>...</td> 
		<td>0</td> 
		<td></td> 
	</tr>
</table>
<br>

== 構造体 ==
構造体の説明
 typedef ...
 typedef struct ... {
      ...
 } ...


== API ==
=== 処理 ===
APIの説明
 Type Function(Argument, ...)

モードによって処理が異なる場合は表で説明
<table border="1">
	<tr> 
		<th>モード</th> 
		<th>関数名</th> 
		<th>説明</th> 
	</tr> 
	<tr> 
		<td>+1</td> 
		<td></td> 
		<td></td> 
	</tr> 
</table> 
<br>