Menu work, move VOS queue interface

This commit is contained in:
elasota
2019-12-24 02:35:24 -05:00
parent 4c743c90b1
commit 3111609536
34 changed files with 828 additions and 92 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
struct GpVOSEvent;
struct IGpVOSEventQueue
{
virtual const GpVOSEvent *GetNext() = 0;
virtual void DischargeOne() = 0;
virtual GpVOSEvent *QueueEvent() = 0;
};