| 110 | } |
| 111 | |
| 112 | int dds_mkdir(const ACE_TCHAR* path) |
| 113 | { |
| 114 | ACE_WString wpath = to_win32_long_path(path); |
| 115 | ACE_WIN32CALL_RETURN(ACE_ADAPT_RETVAL(::CreateDirectoryW(wpath.c_str(), 0), |
| 116 | ace_result_), int, -1); |
| 117 | } |
| 118 | |
| 119 | int dds_chdir(const ACE_TCHAR* path) |
| 120 | { |
no test coverage detected