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