| 124 | } |
| 125 | |
| 126 | void fxLinkConflictEntry(txConflictTable* conflictTable, txConflictEntry* conflictEntry) |
| 127 | { |
| 128 | if (conflictTable->last) |
| 129 | conflictTable->last->next = conflictEntry; |
| 130 | else |
| 131 | conflictTable->first = conflictEntry; |
| 132 | conflictTable->last = conflictEntry; |
| 133 | conflictTable->count++; |
| 134 | } |
| 135 | |
| 136 | txColorEntry* fxNewColorEntry(txLinker* linker, txSlot* property) |
| 137 | { |