| 414 | } |
| 415 | |
| 416 | txLinkerInclude* fxNewLinkerInclude(txLinker* linker, txString path) |
| 417 | { |
| 418 | txLinkerInclude* result = fxNewLinkerChunkClear(linker, sizeof(txLinkerInclude)); |
| 419 | result->path = fxNewLinkerString(linker, path, mxStringLength(path)); |
| 420 | return result; |
| 421 | } |
| 422 | |
| 423 | txLinkerPreload* fxNewLinkerPreload(txLinker* linker, txString name) |
| 424 | { |
no test coverage detected