#ifndef MISC_H #define MISC_H #include #include /* Returns the current time as milliseconds. The return value can only be compared to another return value of the function. */ int64_t GetCurrentTime(); /* Simple hexdump to stdout. */ void DumpHex(const void* data, size_t size); #endif