]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/dl_macosx.cpp
Updated version to 2.3.2 so apps can test for differences in new merged source
[wxWidgets.git] / src / unix / dl_macosx.cpp
index 8e607cf91207b99ef87e1b34f9197a6ac853315f..b2384b8459175340b9e63173195432deea115f45 100644 (file)
@@ -29,7 +29,9 @@ int dlclose(void *handle) /* stub only */
     return 0;
 }
 
-#import <mach-o/dyld.h>
+extern "C" {
+  #import <mach-o/dyld.h>
+};
 
 enum dyldErrorSource
 {
@@ -68,7 +70,7 @@ void TranslateError(const char *path, enum dyldErrorSource type, int number)
     }
 }
 
-void *dlopen(char *path, int mode /* mode is ignored */)
+void *dlopen(const char *path, int mode /* mode is ignored */)
 {
   int dyld_result;
   NSObjectFileImage ofile;
@@ -89,7 +91,7 @@ void *dlopen(char *path, int mode /* mode is ignored */)
   return handle;
 }
 
-void *dlsym(void *handle, char *symbol)
+void *dlsym(void *handle, const char *symbol)
 {
   void *addr;