Mesen-SX/Utilities/PlatformUtilities.h

15 lines
266 B
C
Raw Permalink Normal View History

2019-02-13 14:10:36 -05:00
#pragma once
#include "stdafx.h"
class PlatformUtilities
{
private:
static bool _highResTimerEnabled;
public:
static void DisableScreensaver();
static void EnableScreensaver();
static void EnableHighResolutionTimer();
static void RestoreTimerResolution();
};