prepare to allow disable opt passes

This commit is contained in:
tildearrow 2025-04-07 00:20:48 -05:00
parent e9911ab0aa
commit 27cde60f0b
3 changed files with 235 additions and 225 deletions

View file

@ -103,6 +103,14 @@ class DivCSPlayer {
stream(buf,len) {}
};
struct DivCSProgress {
int stage, count, total;
DivCSProgress():
stage(0),
count(0),
total(0) {}
};
// command stream utilities
namespace DivCS {
int getCmdLength(unsigned char ext);