xtd_c - Reference Guide 0.2.0
event_handler.h
Go to the documentation of this file.
1 
6 #pragma once
7 #include "object.h"
8 #include "event_args.h"
9 
18 typedef void (*xtd_event_handler)(xtd_object* sender, xtd_event_args e);
Contains event args definitions.
void(* xtd_event_handler)(xtd_object *sender, xtd_event_args e)
Represents the method that will handle an event that has no event data.
Definition: event_handler.h:18
Represent an instance of the ultimate base object.
Definition: object.h:23
Represent an instance of the event args object.
Definition: event_args.h:15
Contains object definitions.