if ( wxTheApp )
name = wxTheApp->GetAppName();
if ( name.empty() )
- name = L"wxWindows Application";
+ name = L"wxWidgets Application";
MessageBox(NULL, L"Abnormal program termination", name, MB_ICONHAND | MB_OK);
return NULL;
}
+int wxCRT_Rename(const wchar_t *src, const wchar_t *dst)
+{
+ return ::MoveFile(src, dst) ? 0 : -1;
+}
+
+int wxCRT_Remove(const wchar_t *path)
+{
+ return ::DeleteFile(path) ? 0 : -1;
+}
+