c0e249e993
This reverts commitdaf3b57e89
, reversing changes made to7a6e0b7d77
.
15 lines
No EOL
266 B
C++
15 lines
No EOL
266 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
|
|
class PlatformUtilities
|
|
{
|
|
private:
|
|
static bool _highResTimerEnabled;
|
|
|
|
public:
|
|
static void DisableScreensaver();
|
|
static void EnableScreensaver();
|
|
|
|
static void EnableHighResolutionTimer();
|
|
static void RestoreTimerResolution();
|
|
}; |