Example #1
0
bool CEmuFileWrapper::StreamIsEmulatedFile(FILE* stream)
{
  if (stream != NULL)
  {
    return DescriptorIsEmulatedFile(stream->_file);
  }
  return false;
}
Example #2
0
bool CEmuFileWrapper::StreamIsEmulatedFile(FILE* stream)
{
    if (isValidFilePtr(stream))
    {
        return DescriptorIsEmulatedFile(FileDescriptor(*stream)->_file);
    }
    return false;
}