Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_ChangeNotification.h
Rolando Caloca 532adaa65c DR - Merging //UE4/Dev-Main@5531558 to Dev-Rendering (//UE4/Dev-Rendering)
#rb none
#rnx

[CL 5591014 by Rolando Caloca in Dev-Rendering branch]
2019-03-27 11:33:31 -04:00

26 lines
487 B
C++

// Copyright 2011-2019 Molecular Matters GmbH, all rights reserved.
#pragma once
#include "CoreTypes.h"
#include "Windows/MinimalWindowsAPI.h"
class ChangeNotification
{
public:
ChangeNotification(void);
~ChangeNotification(void);
void Create(const wchar_t* path);
void Destroy(void);
bool Check(unsigned int timeoutMs);
bool CheckOnce(void);
void CheckNext(unsigned int timeoutMs);
private:
bool WaitForNotification(unsigned int timeoutMs);
Windows::HANDLE m_handle;
};