#ifndef Alert_e_First #define Alert_e_First class Font; enum AlertType { eAlertNote, // OK-Button eAlertCaution, // Yes, Cancel and No-Button eAlertStop, // Yes, Cancel and No-Button eAlertMessage, // OK-Button, no image eAlertSun, // OK-Button, no image, obsolete !! eAlertError // image only }; extern int ShowAlert(AlertType at, const char* fmt, ...); extern int ShowAlert(AlertType at, Font *fp, const char* fmt, ...); #endif