Lines Matching defs:owner
66 owner. The owner of an event can revoke all the events in a given
67 event-queue by calling PL_RevokeEvents. An owner might want
69 events after the owner's destruction would cause an error (e.g. an
77 void postMyEvent(MyOwner* owner, int x, char* y)
88 PL_InitEvent(event, owner,
153 If at any time an owner of events is about to be destroyed, you must
155 the owner is gone (or a crash may result). You can do this by either
156 processing all the events in the queue before destroying the owner:
162 DestroyMyOwner(owner);
167 or by revoking the events that are in the queue for that owner. This
173 PL_RevokeEvents(myQueue, owner);
174 DestroyMyOwner(owner);
180 to ensure that all events are removed from the queue for that owner,
181 and to ensure that no more events will be delivered for that owner.
387 ** This routine walks an event queue and destroys any event whose owner is
388 ** the owner specified. The == operation is used to compare owners.
391 PL_RevokeEvents(PLEventQueue* self, void* owner);
479 PL_InitEvent(PLEvent* self, void* owner,
484 ** Returns the owner of an event.
536 void* owner;