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