Index: msg.cc =================================================================== RCS file: /cvs/cygwin-apps/setup/msg.cc,v retrieving revision 2.7 diff -p -u -b -r2.7 msg.cc --- msg.cc 27 Jun 2002 11:01:10 -0000 2.7 +++ msg.cc 5 Apr 2003 09:28:50 -0000 @@ -59,6 +59,21 @@ note (HWND owner, int id, ...) } void +note_nobox (int id, ...) +{ + char buf[1000], fmt[1000]; + + va_list args; + va_start (args, id); + + if (LoadString (hinstance, id, fmt, sizeof (fmt)) <= 0) + ExitProcess (0); + + vsprintf (buf, fmt, args); + log (LOG_PLAIN, String ("mbox note: ") + buf); +} + +void fatal (HWND owner, int id, ...) { va_list args; Index: msg.h =================================================================== RCS file: /cvs/cygwin-apps/setup/msg.h,v retrieving revision 2.2 diff -p -u -b -r2.2 msg.h --- msg.h 23 Dec 2001 12:13:29 -0000 2.2 +++ msg.h 5 Apr 2003 09:28:50 -0000 @@ -31,3 +31,6 @@ void note (HWND owner, int id, ...); /* returns IDYES or IDNO, otherwise same as note() */ int yesno (HWND owner, int id, ...); + +/* Same as note(), but no message box */ +void note_nobox (int id, ...);