Last change
on this file since 72 was
66,
checked in by Maciej Komosinski, 14 years ago
|
set 'eol-style' to 'native'
|
-
Property svn:eol-style set to
native
|
File size:
912 bytes
|
Rev | Line | |
---|
[64] | 1 | // This file is a part of the Framsticks GDK library. |
---|
| 2 | // Copyright (C) 2002-2011 Szymon Ulatowski. See LICENSE.txt for details. |
---|
| 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
[5] | 4 | |
---|
| 5 | #include "stdiofile.h" |
---|
| 6 | #include "nonstd.h" |
---|
| 7 | #include "nonstd_io.h" |
---|
| 8 | |
---|
| 9 | VirtFILE* StdioFileSystem::Vfopen(const char* path,const char*mode) |
---|
| 10 | { |
---|
| 11 | FILE *f=fopen(path,mode); |
---|
| 12 | if (f) return new StdioFILE(f,path); else return 0; |
---|
| 13 | } |
---|
| 14 | |
---|
| 15 | VirtDIR* StdioFileSystem::Vopendir(const char* path) |
---|
| 16 | { |
---|
| 17 | #ifndef _MSC_VER |
---|
| 18 | DIR *d=opendir(path); |
---|
| 19 | if (d) return new StdioDIR(d); else |
---|
| 20 | #endif |
---|
| 21 | return 0; |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | int StdioFileSystem::Vfexists(const char* path) |
---|
| 25 | {return fileExists(path);} |
---|
| 26 | |
---|
| 27 | void StdioFILE::setStdio() |
---|
| 28 | { |
---|
| 29 | static StdioFILEDontClose si(stdin); |
---|
| 30 | static StdioFILEDontClose so(stdout); |
---|
| 31 | static StdioFILEDontClose se(stderr); |
---|
| 32 | setVstdin(&si); |
---|
| 33 | setVstdout(&so); |
---|
| 34 | setVstderr(&se); |
---|
| 35 | } |
---|
| 36 | |
---|
| 37 | #ifndef _MSC_VER |
---|
| 38 | dirent* StdioDIR::Vreaddir() |
---|
| 39 | { |
---|
| 40 | return readdir(dir); |
---|
| 41 | } |
---|
| 42 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.