Example #1
0
void CEmuFileWrapper::UnRegisterFileObjectByStream(FILE* stream)
{
  if (stream != NULL)
  {
    return UnRegisterFileObjectByDescriptor(stream->_file);
  }
}
Example #2
0
void CEmuFileWrapper::UnRegisterFileObjectByStream(FILE* stream)
{
    if (isValidFilePtr(stream))
    {
        return UnRegisterFileObjectByDescriptor(FileDescriptor(*stream)->_file);
    }
}