+ return false;
+}
+
+#endif // wxUSE_DATETIME
+
+#ifdef __WXMAC__
+
+const short kMacExtensionMaxLength = 16 ;
+class MacDefaultExtensionRecord
+{
+public :
+ MacDefaultExtensionRecord()
+ {
+ m_ext[0] = 0 ;
+ m_type = m_creator = NULL ;
+ }
+ MacDefaultExtensionRecord( const MacDefaultExtensionRecord& from )
+ {
+ wxStrcpy( m_ext , from.m_ext ) ;
+ m_type = from.m_type ;
+ m_creator = from.m_creator ;
+ }
+ MacDefaultExtensionRecord( const wxChar * extension , OSType type , OSType creator )
+ {
+ wxStrncpy( m_ext , extension , kMacExtensionMaxLength ) ;
+ m_ext[kMacExtensionMaxLength] = 0 ;
+ m_type = type ;
+ m_creator = creator ;
+ }
+ wxChar m_ext[kMacExtensionMaxLength] ;
+ OSType m_type ;
+ OSType m_creator ;
+} ;
+
+#include "wx/dynarray.h"
+WX_DECLARE_OBJARRAY(MacDefaultExtensionRecord, MacDefaultExtensionArray) ;
+
+bool gMacDefaultExtensionsInited = false ;
+
+#include "wx/arrimpl.cpp"
+
+WX_DEFINE_EXPORTED_OBJARRAY(MacDefaultExtensionArray) ;
+
+MacDefaultExtensionArray gMacDefaultExtensions ;
+
+static void MacEnsureDefaultExtensionsLoaded()
+{
+ if ( !gMacDefaultExtensionsInited )
+ {
+
+ // load the default extensions
+ MacDefaultExtensionRecord defaults[1] =
+ {
+ MacDefaultExtensionRecord( wxT("txt") , 'TEXT' , 'ttxt' ) ,
+
+ } ;
+ // we could load the pc exchange prefs here too
+
+ for ( size_t i = 0 ; i < WXSIZEOF( defaults ) ; ++i )
+ {
+ gMacDefaultExtensions.Add( defaults[i] ) ;
+ }
+ gMacDefaultExtensionsInited = true ;
+ }
+}
+bool wxFileName::MacSetTypeAndCreator( wxUint32 type , wxUint32 creator )
+{
+ FInfo fndrInfo ;
+ FSSpec spec ;
+ wxMacFilename2FSSpec(GetFullPath(),&spec) ;
+ OSErr err = FSpGetFInfo( &spec , &fndrInfo ) ;
+ wxCHECK( err == noErr , false ) ;
+
+ fndrInfo.fdType = type ;
+ fndrInfo.fdCreator = creator ;
+ FSpSetFInfo( &spec , &fndrInfo ) ;
+ return true ;