| 729 | } |
| 730 | |
| 731 | void* fxGetHostChunkIf(txMachine* the, txSlot* slot) |
| 732 | { |
| 733 | txSlot* host = fxCheckHostObject(the, slot); |
| 734 | if (host) { |
| 735 | if (host->flag & XS_HOST_CHUNK_FLAG) |
| 736 | return host->value.host.data; |
| 737 | } |
| 738 | return NULL; |
| 739 | } |
| 740 | |
| 741 | void* fxGetHostChunkValidate(txMachine* the, txSlot* slot, void* validator) |
| 742 | { |
nothing calls this directly
no test coverage detected