1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-24 15:29:32 +00:00

Add docblocks for vm_event functions

This commit is contained in:
Peter Evans 2018-02-05 21:43:02 -06:00
parent 5cfdd28302
commit 8c0b69668c

View File

@ -4,6 +4,10 @@
#include "vm_event.h"
/*
* Look through all of the events that are queued up and, whatever we
* need to do for them, do that.
*/
void
vm_event_poll(vm_screen *scr)
{
@ -17,6 +21,10 @@ vm_event_poll(vm_screen *scr)
}
}
/*
* Handle any keyboard events from the event queue. Those would be
* things like pressing a key, releasing a key... boring stuff, really.
*/
void
vm_event_keyboard(vm_event *ev)
{