changeset 413:2e6c28ee4794

Skeletal changes to the MacOS file, this would be a good starting point for a port. :)
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 13 May 2003 08:01:03 +0000
parents a8015e02b590
children 2a55f61714fd
files mac/dw.c
diffstat 1 files changed, 1 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/mac/dw.c	Tue May 13 07:59:00 2003 +0000
+++ b/mac/dw.c	Tue May 13 08:01:03 2003 +0000
@@ -650,7 +650,7 @@
  *           format: printf style format string.
  *           ...: Additional variables for use in the format.
  */
-int API dw_messagebox(char *title, char *format, ...)
+int API dw_messagebox(char *title, int flags, char *format, ...)
 {
 	va_list args;
 	char outbuf[1024];
@@ -667,19 +667,6 @@
 }
 
 /*
- * Displays a Message Box with given text and title..
- * Parameters:
- *           title: The title of the message box.
- *           text: The text to display in the box.
- * Returns:
- *           True if YES False of NO.
- */
-int API dw_yesno(char *title, char *text)
-{
-	return FALSE;
-}
-
-/*
  * Makes the window topmost.
  * Parameters:
  *           handle: The window handle to make topmost.