mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-30 23:02: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;
|
|
}; |