| 515 | } |
| 516 | |
| 517 | void fxDefaultFeatures(txPool* pool) |
| 518 | { |
| 519 | txFeature** address = &(pool->firstFeature); |
| 520 | int i; |
| 521 | for (i = 0; i < mxFeaturesCount; i++) { |
| 522 | txFeature* feature = fxNewFeature(gxFeatures[i]); |
| 523 | *address = feature; |
| 524 | address = &(feature->next); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | int fxFilterResult(txResult* result) |
| 529 | { |