// No equivalent in WinCE
wxUnusedVar(d);
#else
- success = (SetCurrentDirectory(d.fn_str()) != 0);
+ success = (SetCurrentDirectory(d.t_str()) != 0);
#endif
#else
// Must change drive, too.
// quoting the MSDN: "To obtain a handle to a directory, call the
// CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag", but this
// doesn't work under Win9x/ME but then it's not needed there anyhow
- const DWORD dwAttr = ::GetFileAttributes(path.fn_str());
+ const DWORD dwAttr = ::GetFileAttributes(path.t_str());
if ( dwAttr == INVALID_FILE_ATTRIBUTES )
{
// file probably doesn't exist at all
DWORD attributes = FILE_ATTRIBUTE_TEMPORARY |
FILE_FLAG_DELETE_ON_CLOSE;
- HANDLE h = ::CreateFile(filename.fn_str(), access, 0, NULL,
+ HANDLE h = ::CreateFile(filename.t_str(), access, 0, NULL,
disposition, attributes, NULL);
return wxOpenOSFHandle(h, wxO_BINARY);
SHFILEOPSTRUCT fileop;
wxZeroMemory(fileop);
fileop.wFunc = FO_DELETE;
- #if defined(__CYGWIN__) && defined(wxUSE_UNICODE)
- fileop.pFrom = path.wc_str();
- #else
- fileop.pFrom = path.fn_str();
- #endif
+ fileop.pFrom = path.t_str();
fileop.fFlags = FOF_SILENT | FOF_NOCONFIRMATION;
#ifndef __WXWINCE__
// FOF_NOERRORUI is not defined in WinCE