| 115 | } |
| 116 | |
| 117 | void fxLinkColorEntry(txColorTable* colorTable, txColorEntry* colorEntry) |
| 118 | { |
| 119 | if (colorTable->last) |
| 120 | colorTable->last->next = colorEntry; |
| 121 | else |
| 122 | colorTable->first = colorEntry; |
| 123 | colorTable->last = colorEntry; |
| 124 | } |
| 125 | |
| 126 | void fxLinkConflictEntry(txConflictTable* conflictTable, txConflictEntry* conflictEntry) |
| 127 | { |