+ mktemp(MBSTRINGCAST m_strTemp.mb_str()); // will do because length doesn't change
+#elif defined(__WXPM__)
+ // for now just create a file
+ // future enhancements can be to set some extended attributes for file systems
+ // OS/2 supports that have them (HPFS, FAT32) and security (HPFS386)
+ static const wxChar *szMktempSuffix = _T("XXX");
+ m_strTemp << strName << szMktempSuffix;
+ mkdir(m_strTemp.GetWriteBuf(MAX_PATH));