mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-18 10:43:58 +00:00
14 lines
295 B
C
14 lines
295 B
C
|
#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);
|
||
|
};
|