mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 23:32:17 +00:00
8 lines
170 B
C
8 lines
170 B
C
|
#pragma once
|
||
|
|
||
|
class Capture {
|
||
|
public:
|
||
|
virtual void init(UINT monitorID, RECT screen) = 0;
|
||
|
virtual int getNextFrame(RGBQUAD**) = 0;
|
||
|
virtual void doneNextFrame() = 0;
|
||
|
};
|