| 1878 | } |
| 1879 | |
| 1880 | void fxImportNodePrintNode(void* it) |
| 1881 | { |
| 1882 | txImportNode* node = it; |
| 1883 | fprintf(stderr, "%s ", node->description->name); |
| 1884 | if (node->from) |
| 1885 | fprintf(stderr, "\"%s\" ", ((txStringNode*)node->from)->value); |
| 1886 | else |
| 1887 | fprintf(stderr, "\"?\" "); |
| 1888 | } |
| 1889 | |
| 1890 | void fxIntegerNodePrintNode(void* it) |
| 1891 | { |