如标题,请各位大侠解答,秋大佬指点!
2 回答
慕桂英4014372
TA贡献1871条经验 获得超13个赞
HFILE _lopen(
LPCSTR lpPathName, // pointer to name of file to open
int iReadWrite // file access mode
);//打开文件 UINT _lread(
HFILE hFile, // handle to file
LPVOID lpBuffer, // pointer to buffer for read data
UINT uBytes // length, in bytes, of data buffer
); //读文件 HFILE _lclose(
HFILE hFile // handle to file
); // 关闭文件 long _lseek(
int fd,
long offset,
int origin
);
//定位文件指针
添加回答
举报
0/150
提交
取消