| 825 | } |
| 826 | |
| 827 | txHostHooks* fxGetHostHooksIf(txMachine* the, txSlot* slot) |
| 828 | { |
| 829 | txSlot* host = fxCheckHostObject(the, slot); |
| 830 | if (host) { |
| 831 | if (host->flag & XS_HOST_HOOKS_FLAG) |
| 832 | return host->value.host.variant.hooks; |
| 833 | } |
| 834 | return NULL; |
| 835 | } |
| 836 | |
| 837 | txHostHooks* fxGetHostHooksValidate(txMachine* the, txSlot* slot, txString validator) |
| 838 | { |
nothing calls this directly
no test coverage detected