mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-12-25 22:20:10 +00:00
[host] initial service framework implemented
This commit is contained in:
14
host/ICapture.h
Normal file
14
host/ICapture.h
Normal 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);
|
||||
};
|
||||
Reference in New Issue
Block a user