| 2343 | } |
| 2344 | |
| 2345 | void fxListFrames(txMachine* the) |
| 2346 | { |
| 2347 | txSlot* aFrame; |
| 2348 | |
| 2349 | fxEcho(the, "<frames>"); |
| 2350 | aFrame = the->frame; |
| 2351 | while (aFrame) { |
| 2352 | fxEcho(the, "<frame"); |
| 2353 | fxEcho(the, " name=\""); |
| 2354 | fxEchoFrameName(the, aFrame); |
| 2355 | fxEcho(the, "\""); |
| 2356 | fxEchoAddress(the, aFrame); |
| 2357 | fxEchoFramePathLine(the, aFrame); |
| 2358 | fxEcho(the, "/>"); |
| 2359 | aFrame = aFrame->next; |
| 2360 | } |
| 2361 | fxEcho(the, "</frames>"); |
| 2362 | } |
| 2363 | |
| 2364 | void fxListGlobal(txMachine* the) |
| 2365 | { |
no test coverage detected