]> git.saurik.com Git - wxWidgets.git/commitdiff
removing dependany on mac headers from public wx headers
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 4 Jan 2002 17:09:59 +0000 (17:09 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 4 Jan 2002 17:09:59 +0000 (17:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/dynlib.h
include/wx/filefn.h

index 56fd795c0b659b8c67b2079d3e5e524797c1b295..a3c4f2d98b0fd9ed06bf9982cf1cb17897894cbf 100644 (file)
@@ -55,7 +55,7 @@
 #elif defined(__DARWIN__)
     typedef void *wxDllType;
 #elif defined(__WXMAC__)
-    typedef CFragConnectionID wxDllType;
+    typedef void *wxDllType;
 #else
 #   error "wxLibrary can't be compiled on this platform, sorry."
 #endif // OS
index 4d914f458fd9b98f65e5920d88a1f46bdc20a5d2..393abee3a19b53df9288a08b1e10b156663ac2fa 100644 (file)
@@ -173,18 +173,6 @@ WXDLLEXPORT void wxDos2UnixFilename(wxChar *s);
 WXDLLEXPORT void wxUnix2DosFilename(wxChar *s);
 #define Unix2DosFilename wxUnix2DosFilename
 
-#ifdef __WXMAC__
-WXDLLEXPORT wxString wxMacFSSpec2MacFilename( const FSSpec *spec ) ;
-WXDLLEXPORT void wxMacFilename2FSSpec( const char *path , FSSpec *spec ) ;
-#  ifndef __DARWIN__
-// Mac file names are POSIX (Unix style) under Darwin, so these are not needed
-WXDLLEXPORT wxString wxMacFSSpec2UnixFilename( const FSSpec *spec ) ;
-WXDLLEXPORT void wxUnixFilename2FSSpec( const char *path , FSSpec *spec ) ;
-WXDLLEXPORT wxString wxMac2UnixFilename( const char *s) ;
-WXDLLEXPORT wxString wxUnix2MacFilename( const char *s);
-#  endif
-#endif
-
 // Strip the extension, in situ
 WXDLLEXPORT void wxStripExtension(wxChar *buffer);
 WXDLLEXPORT void wxStripExtension(wxString& buffer);