有没有办法从 char 指针设置起始位置,它是内存中的一个文件。
我需要从流中读取数据的提取大小字节,并将它们复制到提供的数据地址并返回读取的字节数。这是我的 memset 试用,我尝试使用内存中的文件进行 fread 之类的操作。希望可以有人帮帮我。
typedef signed long long Int64; // osx for example
Int64 FileStream::read(void* data, Int64 size)
{
// make sure, that size was not > as filename
Int64 wanted_buffer = currentposition + size;
if (wanted_buffer > memfile->GetSize())
size = memfile->GetSize() - currentposition;
// tryout with memcpy
memcpy(data, currentposition + memfile->GetBuffer(), size);
currentposition += size;
// like
// return std::fread(data, 1, static_cast<std::size_t>(size), m_file);
return currentposition;
}