| 2640 | inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } |
| 2641 | inline int RmDir(const char* dir) { return _rmdir(dir); } |
| 2642 | inline bool IsDir(const StatStruct& st) { |
| 2643 | return (_S_IFDIR & st.st_mode) != 0; |
| 2644 | } |
| 2645 | # endif // GTEST_OS_WINDOWS_MOBILE |
| 2646 | |
| 2647 | #else |