/***** Alert-Box in (Megamax - C *****/
#include <gemdefs.h>
#include <stdio.h>
main()
{
   int  wahl;
   appl_init();
wahl=form_alert(2,"[2][Wollen Sie im Programm doch|noch weiter arbeiten ? ?][Logo|Neenee]" );
if (wahl == 1 ) printf(" Knopf 1 wurde gedrckt " );
if (wahl == 2 ) printf(" Knopf 2 wurde gedrckt " );
   appl_exit();
}
