Changeset 1038 for cpp/common


Ignore:
Timestamp:
11/30/20 03:42:04 (3 years ago)
Author:
Maciej Komosinski
Message:

Ensure that when stdin/stdout/stderr are not supported (e.g., Android apps), the source does not use them (conflicts with MFILE...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/common/virtfile/stdinoutfilesystem.cpp

    r928 r1038  
    66#include "stdiofile.h"
    77
     8
    89VirtFILE *StdInOutFileSystem::Vfopen(const char* path, const char*mode)
    910{
     11#ifndef NO_STD_IN_OUT_ERR
    1012        if (isStdInOutPath(path))
    1113        {
     
    1517                        return new StdioFILEDontClose(stdout);
    1618        }
     19#endif
    1720        return (chain != NULL) ? chain->Vfopen(path, mode) : NULL;
    1821}
Note: See TracChangeset for help on using the changeset viewer.