[host] initial service framework implemented

This commit is contained in:
Geoffrey McRae
2017-10-31 23:21:05 +11:00
parent 941f0f1c16
commit 3dd205bafc
10 changed files with 274 additions and 8 deletions

14
host/ICapture.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <common/KVMGFXHeader.h>
__interface ICapture
{
public:
bool Initialize();
bool DeInitialize();
enum FrameType GetFrameType();
enum FrameComp GetFrameCompression();
size_t GetMaxFrameSize();
bool GrabFrame(void * buffer, size_t bufferSize, size_t * outLen);
};