Below is the file 'modules/tm_win32/tm_win32.h' from this revision. You can also download the file.
/************************************************* * Win32 Timer Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_EXT_TIMER_WIN32_H__ #define BOTAN_EXT_TIMER_WIN32_H__ #include <botan/timers.h> namespace Botan { /************************************************* * Win32 Timer * *************************************************/ class Win32_Timer : public Timer { public: u64bit clock() const; }; } #endif