Changeset 202
- Timestamp:
- 04/02/14 16:16:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/nonstd_stdio.cpp
r201 r202 32 32 if (fname == NULL) return false; //SplitFileSystem never passes NULL but this function is public so we never know 33 33 #if defined _WIN32 && !defined SHP 34 return PathIsRelative(Util::strTOwstr(fname).c_str()) == TRUE; //http://msdn.microsoft.com/en-us/library/bb773660%28v=vs.85%29.aspx34 return PathIsRelative(Util::strTOwstr(fname).c_str()) == FALSE; //http://msdn.microsoft.com/en-us/library/bb773660%28v=vs.85%29.aspx 35 35 #else 36 36 return fname[0] == PATH_SEPARATOR_CHAR;
Note: See TracChangeset
for help on using the changeset viewer.