+void IOEventSource::setRefcon(void *newrefcon)
+{
+ refcon = newrefcon;
+}
+
+void * IOEventSource::getRefcon() const
+{
+ return refcon;
+}
+
+IOEventSource::Action IOEventSource::getAction() const
+{
+ if (kActionBlock & flags) return NULL;
+ return (action);
+}
+
+IOEventSource::ActionBlock IOEventSource::getActionBlock(ActionBlock) const
+{
+ if (kActionBlock & flags) return actionBlock;
+ return (NULL);
+}