# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1052812863 0 # Node ID 2e6c28ee4794625bc4a27559797685c124c3aa6d # Parent a8015e02b590b5fcaa717469af4c09d2560001b2 Skeletal changes to the MacOS file, this would be a good starting point for a port. :) diff -r a8015e02b590 -r 2e6c28ee4794 mac/dw.c --- 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.