os/macosx/macos.m
changeset 2827 12c9eda7edcd
parent 2741 65d4de069014
child 2847 65c54f935db6
--- a/os/macosx/macos.m	Fri Jan 06 21:10:58 2006 +0000
+++ b/os/macosx/macos.m	Fri Jan 06 21:27:44 2006 +0000
@@ -8,11 +8,33 @@
  * To insure that the crosscompiler still works, let him try any changes before they are committed
  */
 
+
+#ifdef WITH_SDL
+
 void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel )
 {
 	NSRunAlertPanel([NSString stringWithCString: title], [NSString stringWithCString: message], [NSString stringWithCString: buttonLabel], nil, nil);
 }
 
+#elif defined WITH_COCOA
+
+void CocoaDialog ( const char *title, const char *message, const char *buttonLabel );
+
+void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel )
+{
+	CocoaDialog(title, message, buttonLabel);
+}
+
+
+#else
+
+void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel )
+{
+	fprintf(stderr, "%s: %s\n", title, message);
+}
+
+#endif
+
 void ShowMacAssertDialog ( const char *function, const char *file, const int line, const char *expression )
 {
 	const char *buffer =