Code cleanup, move a lot of "Host" APIs to GpCommon

This commit is contained in:
elasota
2020-11-25 12:05:59 -05:00
parent 9d0f2c35b3
commit 5c640b72eb
102 changed files with 759 additions and 1072 deletions

12
GpCommon/IGpThreadEvent.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
#include <stdint.h>
struct IGpThreadEvent
{
public:
virtual void Wait() = 0;
virtual bool WaitTimed(uint32_t msec) = 0;
virtual void Signal() = 0;
virtual void Destroy() = 0;
};