Changeset 81 for cpp/gdk/stdiofile.h
- Timestamp:
- 02/08/13 03:29:17 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/gdk/stdiofile.h
r66 r81 9 9 #include "sstring.h" 10 10 #include <stdio.h> 11 #ifndef _MSC_VER 12 #include <dirent.h> 13 #endif 11 #include "nonstd_dir.h" 14 12 15 13 class StdioFileSystem: public VirtFileSystem … … 49 47 class StdioDIR: public VirtDIR 50 48 { 51 #ifndef _MSC_VER52 49 DIR *dir; 53 50 public: … … 55 52 ~StdioDIR() {if (dir) closedir(dir);} 56 53 dirent* Vreaddir(); 57 #endif58 54 }; 59 55
Note: See TracChangeset
for help on using the changeset viewer.