browser-window-c 0.3.2

Browser framework functionality for BrowserWindow written in C/C++.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#include "event.h"

#include <stddef.h>


BOOL bw_Event_fire(bw_Event* event, void* arg) {
    if (event->callback != NULL) {
        return event->callback(event->data, arg);
    }
    return FALSE;
}