void LogEntry::Arg::setValue(duint64 i) { clear(); _type = IntegerArgument; _data.intValue = dint64(i); }
void LogEntry::Arg::setValue(void const *p) { clear(); _type = IntegerArgument; _data.intValue = dint64(p); }
void addBytes(dint64 bytes) { _currentBytes = de::max(dint64(0), _currentBytes + bytes); }