00001 /************************************************************************* 00002 * FILE: msgwin.h 00003 * AUTHOR: CAL 00004 * DATE: 26 April 1993 00005 * PURPOSE: 00006 * Creates a pop-up message window with an OK button and returns 00007 * a message corresponding to that button being pressed. 00008 **************************************************************************/ 00009 00010 #ifndef _MSGWIN_H 00011 #define _MSGWIN_H 00012 00013 #include "messages.h" 00014 00015 Message MessageWin (int bc, int bkc, char* t, int tc, 00016 char **txt, int txtc); 00017 00018 00019 #endif 00020 00021