3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-15 11:45:54 +00:00

8 lines
170 B
C
Raw Normal View History

2022-04-02 18:24:21 +05:00
#pragma once
class Capture {
public:
virtual void init(UINT monitorID, RECT screen) = 0;
virtual int getNextFrame(RGBQUAD**) = 0;
virtual void doneNextFrame() = 0;
};