Go to the previous, next section.
Once keyboard is up you should use following function to get the events:
int aa_getevent(aa_context *c, int wait);
if wait is set to 1 functions wait for an event otherwise they just peek for an event (and might return AA_NONE). Event can be:
value &= ~AA_RELEASE
.
If you don't want to be informed about such strange events and if you want to know just about the keys use:
int aa_getkey(aa_context *c, int wait);
Go to the previous, next section.