mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +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;
|
||
|
};
|