| 1793 | } |
| 1794 | |
| 1795 | void fxUnlinkChunks(txMachine* the) |
| 1796 | { |
| 1797 | txBlock* block = the->firstBlock; |
| 1798 | while (block) { |
| 1799 | txByte* current = ((txByte*)block) + sizeof(txBlock); |
| 1800 | txByte* limit = block->current; |
| 1801 | while (current < limit) { |
| 1802 | txSize size = ((txChunk*)current)->size; |
| 1803 | txByte* next = current + size; |
| 1804 | ((txChunk*)current)->temporary = C_NULL; |
| 1805 | current = next; |
| 1806 | } |
| 1807 | block = block->nextBlock; |
| 1808 | } |
| 1809 | } |
| 1810 | |
| 1811 | txCallback fxUnprojectCallback(txMachine* the, txSnapshot* snapshot, txCallback callback) |
| 1812 | { |