| 183 | } |
| 184 | |
| 185 | txLinkerCallback* fxGetLinkerCallbackByAddress(txLinker* linker, txCallback which) |
| 186 | { |
| 187 | txLinkerCallback* linkerCallback = linker->firstCallback; |
| 188 | while (linkerCallback) { |
| 189 | if (linkerCallback->callback == which) |
| 190 | return linkerCallback; |
| 191 | linkerCallback = linkerCallback->nextCallback; |
| 192 | } |
| 193 | return NULL; |
| 194 | } |
| 195 | |
| 196 | txLinkerCallback* fxGetLinkerCallbackByName(txLinker* linker, txString name) |
| 197 | { |
no outgoing calls
no test coverage detected