winfit.h 280 B

1234567891011121314151617181920
  1. #ifndef _TOOLKIT_WIN_FIT_H_
  2. #define _TOOLKIT_WIN_FIT_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. static uint64_t get_tick_count()
  7. {
  8. /** nano sec to sec*/
  9. return toolkit_hrtime() / 1000000;
  10. }
  11. #ifdef __cplusplus
  12. } // extern "C" {
  13. #endif
  14. #endif // !_TOOLKIT_WIN_FIT_H_