mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
14 lines
295 B
C++
14 lines
295 B
C++
#pragma once
|
|
|
|
#include "common/KVMGFXHeader.h"
|
|
|
|
__interface ICapture
|
|
{
|
|
public:
|
|
bool Initialize();
|
|
void DeInitialize();
|
|
enum FrameType GetFrameType();
|
|
enum FrameComp GetFrameCompression();
|
|
size_t GetMaxFrameSize();
|
|
bool GrabFrame(void * buffer, size_t bufferSize, size_t * outLen);
|
|
}; |