| 2295 | inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } |
| 2296 | inline int RmDir(const char* dir) { return _rmdir(dir); } |
| 2297 | inline bool IsDir(const StatStruct& st) { |
| 2298 | return (_S_IFDIR & st.st_mode) != 0; |
| 2299 | } |
| 2300 | # endif // GTEST_OS_WINDOWS_MOBILE |
| 2301 | |
| 2302 | #else |