1 #if !defined(PP_GETTICKCOUNT_H_INCLUDED) && defined(_WIN32) 2 #define PP_GETTICKCOUNT_H_INCLUDED 5 #if _WIN32_WINNT >= 0x600 7 inline tickcount_t
getTickCount() { return ::GetTickCount64(); }
9 #define PFC_TICKCOUNT_32BIT 11 inline tickcount_t
getTickCount() { return ::GetTickCount(); }
16 #endif // #if !defined(PP_GETTICKCOUNT_H_INCLUDED) && defined(_WIN32)
tickcount_t getTickCount()