| 579 | COMMAND(zipmodremove, "s"); |
| 580 | |
| 581 | void zipmodclear() |
| 582 | { |
| 583 | loopvrev(archives) |
| 584 | { |
| 585 | ziparchive *a = archives[i]; |
| 586 | if(a->openfiles) |
| 587 | { |
| 588 | conoutf("zip %s has %d open files", a->name, a->openfiles); |
| 589 | continue; |
| 590 | } |
| 591 | delete archives.remove(i); |
| 592 | } |
| 593 | rebuildzipfilehashtable(); |
| 594 | } |
| 595 | COMMAND(zipmodclear, ""); |
| 596 | |
| 597 | void zipmodlist(char *which) // "active", "inactive", "all"(default) |
nothing calls this directly
no test coverage detected