1234567891011121314151617181920 |
- #ifndef _TOOLKIT_WIN_FIT_H_
- #define _TOOLKIT_WIN_FIT_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- static uint64_t get_tick_count()
- {
-
- /** nano sec to sec*/
- return toolkit_hrtime() / 1000000;
- }
- #ifdef __cplusplus
- } // extern "C" {
- #endif
- #endif // !_TOOLKIT_WIN_FIT_H_
|