関数win_countSecondBlock マニュアル

(The documentation of function win_countSecondBlock)

Last Update: 2023/3/23


◆機能・用途(Purpose)

WINファイルにおける秒ブロックの個数をカウントする。
Count the number of second blocks in a WIN file.


◆形式(Format)

#include <win/readwrite.h>
inline int win_countSecondBlock(const char ∗winfile)


◆引数(Arguments)

winfile 読み込むwinファイル名。
The name of the WIN file read.


◆戻り値(Return value)

引数winfileで指定したファイル中の秒ブロックの個数。 秒に「飛び」がある場合も考えられるので 必ずしもファイルのデータ長(秒)とは一致しない。
The number of second blocks in the file specified by argument winfile. Note that this number may not necessarily equal the data length (s) of the file because there may be jumps in the seconds.


◆使用例(Example)

int NsecondBlock=win_countSecondBlock("data.win");


◆使用上の注意(Note)

WINデータにはいくつかのフォーマットがあり、 この関数ではその中の ディスク上のデータ を想定している。 それ以外のフォーマットのファイルはこの関数では正しく処理できない。
There are several formats for WIN data, and this function assumes the input data to be data in disc format. Files with other formats cannot be processed by this function.