1 #include <precomp.h> 2 #include <direct.h> 3 #include <tchar.h> 4 5 /* 6 * @implemented 7 */ 8 int _tmkdir(const _TCHAR* _path) 9 { 10 if (!CreateDirectory(_path, NULL)) { 11 _dosmaperr(GetLastError()); 12 return -1; 13 } 14 return 0; 15 } 16