| 1027 | } |
| 1028 | |
| 1029 | void fxLoadModule(txMachine* the, txSlot* module, txID moduleID) |
| 1030 | { |
| 1031 | txScript* script = fxLoadScript(the, fxGetKeyName(the, moduleID)); |
| 1032 | if (script) |
| 1033 | fxResolveModule(the, module, moduleID, script, C_NULL, C_NULL); |
| 1034 | } |
| 1035 | |
| 1036 | txScript* fxLoadScript(txMachine* the, txString path) |
| 1037 | { |
nothing calls this directly
no test coverage detected