関数win_listChannelCode_in_data マニュアル

(The documentation of function win_listChannelCode_in_data)

Last Update: 2023/3/23


◆機能・用途(Purpose)

WINデータに含まれるチャンネルコードをリストアップする。
List the channel codes included in WIN data.


◆形式(Format)

#include <win/channel.h>
inline struct win_channelCodeList win_listChannelCode_in_data
(const struct win_data data)


◆引数(Arguments)

data WINデータが格納された構造体。 一般に複数の秒ブロックから構成され、 含まれるチャンネルが秒ブロックごとに異なる可能性がある。
A structure in which the WIN data to process is stored. It may consist of multiple second blocks, each of which may consist of different channels.


◆戻り値(Return value)

引数dataに含まれるチャンネルコードを漏れなく重複なく列挙した構造体。
A structure composed of all channel codes in argument data without duplication.


◆使用例(Example)

struct win_data data=read_win_file("data.win");
struct win_channelCodeList win_listChannelCode_in_data(data);