SKYENGINE API 参考手册返回目录 |
int32
mr_plat(int32 code = 1231, int32
param)
Description
获得当前文件的指针的位置。
Parameters
Name
Description
param
文件句柄
MR_PLAT_VALUE_BASE+指针实际位置
/*mrp code*/
int32 GetFilePointPos(int32 fh) //fh为mrc_open打开的文件句柄
{
if (NULL == fh)
return MR_FAILED;
/*1231:get file point pos*/
return mrc_plat( 1231, fh ) - MR_PLAT_VALUE_BASE;
}