PerformanceCounter.h 326 B

123456789101112131415161718
  1. // Copyright 2014 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #if !defined(_WIN32)
  6. #include <cstdint>
  7. #include "Common/CommonTypes.h"
  8. typedef u64 LARGE_INTEGER;
  9. bool QueryPerformanceCounter(u64* out);
  10. bool QueryPerformanceFrequency(u64* lpFrequency);
  11. #endif