You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
395 B
C++

// HighPerformanceSleep.h: interface for the CHighPerformanceSleep class.
//
//////////////////////////////////////////////////////////////////////
#pragma once
#include "Trigger.h"
#include "AccurateTimer.h"
#include "DllDefines.h"
class UTILITYDLL CHighPerformanceSleep
{
public:
static void SleepNow(DWORD dwTime);
CHighPerformanceSleep();
virtual ~CHighPerformanceSleep();
};