2014-10-18 00:50:02 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-10-18 00:50:02 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if !defined(_WIN32)
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
typedef u64 LARGE_INTEGER;
|
|
|
|
bool QueryPerformanceCounter(u64* out);
|
|
|
|
bool QueryPerformanceFrequency(u64* lpFrequency);
|
|
|
|
|
|
|
|
#endif
|