| 2837 | inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } |
| 2838 | inline int RmDir(const char* dir) { return _rmdir(dir); } |
| 2839 | inline bool IsDir(const StatStruct& st) { |
| 2840 | return (_S_IFDIR & st.st_mode) != 0; |
| 2841 | } |
| 2842 | # endif // GTEST_OS_WINDOWS_MOBILE |
| 2843 | |
| 2844 | #else |