osipf_CallObjectEvent Sends an event to an object. Returns true if the default action should continue to process.
| 478 | // Sends an event to an object. Returns true if the default action should |
| 479 | // continue to process. |
| 480 | bool osipf_CallObjectEvent(int objhandle, int event, tOSIRISEventInfo *ei) { |
| 481 | object *objp = ObjGet(objhandle); |
| 482 | if (!objp) |
| 483 | return false; |
| 484 | |
| 485 | return Osiris_CallEvent(objp, event, ei); |
| 486 | } |
| 487 | |
| 488 | // osipf_CallTriggerEvent |
| 489 | // Sends an event to a trigger. Returns true if the default action should |
nothing calls this directly
no test coverage detected