| 102 | } |
| 103 | |
| 104 | void fxIndexSlot(txLinker* linker, txSlot* slot, txInteger index) |
| 105 | { |
| 106 | txLinkerProjection* projection = linker->firstProjection; |
| 107 | while (projection) { |
| 108 | if ((projection->heap < slot) && (slot < projection->limit)) { |
| 109 | projection->indexes[slot - projection->heap] = index; |
| 110 | linker->layout[index] = slot; |
| 111 | return; |
| 112 | } |
| 113 | projection = projection->nextProjection; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void fxLinkColorEntry(txColorTable* colorTable, txColorEntry* colorEntry) |
| 118 | { |