Der Vollständigkeit halber..
#include <aes.h>
#include <stdint.h>
void main( void ){
int16_t apl_id, ret = 0;
apl_id = appl_init();
if( apl_id >= 0 ){
ret = evnt_dclick(0, 1);
/*
if( ret > 0 ){
form_alert( 1, "[1][Nein, hat nicht funktioniert][ OK ]");
}
else{
form_alert( 1, "[1][Doppelklick nun auf 0][ OK ]");
}
*/
appl_exit();
}
}