You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

33 lines
772 B

/* Copyright 2021 Alex 'AdUser' Z (ad_user@runbox.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include "common.h"
static void (*handlers[4])(const char *) = { NULL, NULL, NULL, NULL };
void
f2b_event_send(const char *evt) {
for (short int i = 0; i < 3; i++) {
if (!handlers[i]) break; /* end of list */
handlers[i](evt);
}
}
bool
f2b_event_handler_register(void (*h)(const char *)) {
for (short int i = 0; i < 3; i++) {
if (handlers[i] == NULL) {
handlers[i] = h;
return true;
}
}
return false;
}
void
f2b_event_handler_flush() {
memset(handlers, 0x0, sizeof(handlers));
}