Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
621 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #include "pch_tier0.h"
  8. #include <stdio.h>
  9. #include "tier0/fasttimer.h"
  10. // NOTE: This has to be the last file included!
  11. #include "tier0/memdbgon.h"
  12. uint64 g_ClockSpeed; // Clocks/sec
  13. unsigned long g_dwClockSpeed;
  14. double g_ClockSpeedMicrosecondsMultiplier;
  15. double g_ClockSpeedMillisecondsMultiplier;
  16. double g_ClockSpeedSecondsMultiplier;
  17. // Constructor init the clock speed.
  18. CClockSpeedInit g_ClockSpeedInit;