double FileReadDouble(int handle, int size=DOUBLE_VALUE)
Reads the double-precision number with floating point from the current binary file position. The number format size can be 8 bytes (double) or 4 bytes (float).
倍精度浮動小数点数を現在のバイナリ ファイルの位置から読み取ります。数値形式サイズは、8バイト(double)または、4バイト(float)を指定できます。
To get the error information, one has to call the GetLastError() function.
詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 2 3 4 5 6 7 8 | int handle; double value; handle=FileOpen("mydata.dat",FILE_BIN); if(handle>0) { value=FileReadDouble(handle,DOUBLE_VALUE); FileClose(handle); } |