| 803 | } |
| 804 | |
| 805 | void* fxGetHostHandle(txMachine* the, txSlot* slot) |
| 806 | { |
| 807 | txSlot* host = fxCheckHostObject(the, slot); |
| 808 | if (host) { |
| 809 | return &host->value.host.data; |
| 810 | } |
| 811 | mxSyntaxError("C: xsGetHostData: not a host object"); |
| 812 | return NULL; |
| 813 | } |
| 814 | |
| 815 | txHostHooks* fxGetHostHooks(txMachine* the, txSlot* slot) |
| 816 | { |
nothing calls this directly
no test coverage detected