AILIA_USER_API_FSIZE typedef

AILIA_USER_API_FSIZE = Pointer<NativeFunction<Int64 Function(Pointer<Void>)>>

~japanese @brief ファイルのサイズを取得します @param void * ユーザ定義ファイルポインタ @return 成功した場合、ファイルのサイズをバイト単位で返す。 失敗した場合、-1を返す。

~english @brief Gets the size of the file. @param void * A user-defined file pointer @return This function returns the size of the file in bytes if successful. It returns -1 if it fails.

Implementation

typedef AILIA_USER_API_FSIZE = ffi
    .Pointer<ffi.NativeFunction<ffi.Int64 Function(ffi.Pointer<ffi.Void>)>>;