15 lines
175 B
C
15 lines
175 B
C
|
#ifndef SCREEN_CAPTURE
|
||
|
#define SCREEN_CAPTURE
|
||
|
|
||
|
#include <Windows.h>
|
||
|
|
||
|
class ScreenCapture
|
||
|
{
|
||
|
public:
|
||
|
ScreenCapture();
|
||
|
void EnumScreen();
|
||
|
};
|
||
|
|
||
|
#endif // SCREEN_CAPTURE_H
|
||
|
|