Changeset 811
- Timestamp:
- 01/17/10 16:04:59 (8 months ago)
- Files:
-
- 1 modified
-
trunk/lugre/src/lugre_shell.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lugre/src/lugre_shell.cpp
r807 r811 14 14 // TODO : #elseif LINUX or something like that 15 15 #include <windows.h> 16 #include <direct.h> // mkdir, rmdir 16 17 #else 17 18 // this is the linux code … … 48 49 //~ printf("rob_mkdir(%s,0x%x)\n",path,perm); 49 50 #ifdef WIN32 50 return mkdir(path); // simply comment out for win if it causes trouble during compile, currently (15.01.2010) only needed for iris install using home path51 return _mkdir(path); // http://msdn.microsoft.com/en-us/library/2fkk4dzw.aspx, currently (15.01.2010) only needed for iris install using home path 51 52 #else 52 53 return mkdir(path,(mode_t)perm); … … 57 58 int rob_rmdir (const char* path) { 58 59 #ifdef WIN32 59 return rmdir(path); // simply comment out for win if it causes trouble during compile, currently (15.01.2010) only needed for iris install using home path60 return _rmdir(path); // http://msdn.microsoft.com/en-us/library/2fkk4dzw.aspx, currently (15.01.2010) only needed for iris install using home path 60 61 #else 61 62 return rmdir(path);
