If an new event handler is registered to an event channel with the same priority as a previously registered handler then it is ignored.
For example
EVT_HANDLER(2, evt_midi, midi_in_handler);
in file A would cause
EVT_HANDLER(2, evt_midi, midi_in_handler);
in file B to be ignored.