mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-09 18:43:51 +00:00
24 lines
728 B
C++
24 lines
728 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the disk-byte audit handlers — per-file size
|
||
|
|
// breakdowns grouped by category (open vs proprietary vs
|
||
|
|
// derived). Useful for capacity planning and tracking the
|
||
|
|
// open-format migration's progress against the proprietary
|
||
|
|
// .m2 / .wmo / .blp / .dbc baseline.
|
||
|
|
// --info-zone-bytes drill into one zone
|
||
|
|
// --info-project-bytes project-wide audit + open/prop split
|
||
|
|
//
|
||
|
|
// Both support an optional trailing `--json` flag for
|
||
|
|
// machine-readable reports.
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleInfoBytes(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|