| 108 | } |
| 109 | |
| 110 | void fxBaseResource(txLinker* linker, txLinkerResource* resource, txString base, txInteger baseLength) |
| 111 | { |
| 112 | if (c_strncmp(resource->path, base, baseLength)) |
| 113 | fxReportLinkerError(linker, "'%s': not relative to '%s'", resource->path, base); |
| 114 | resource->path += baseLength; |
| 115 | resource->pathSize = mxStringLength(resource->path) + 1; |
| 116 | } |
| 117 | |
| 118 | void fxBaseScript(txLinker* linker, txLinkerScript* script, txString base, txInteger baseLength) |
| 119 | { |
no test coverage detected