2021-10-04 14:45:36 +00:00
|
|
|
#ifndef SCREEN_CAPTURE
|
|
|
|
#define SCREEN_CAPTURE
|
|
|
|
|
|
|
|
#include <Windows.h>
|
2021-10-05 02:27:53 +00:00
|
|
|
#include <Wincodec.h> // we use WIC for saving images
|
|
|
|
#include <d3d9.h> // DirectX 9 header
|
2021-10-04 14:45:36 +00:00
|
|
|
|
|
|
|
class ScreenCapture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScreenCapture();
|
|
|
|
void EnumScreen();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCREEN_CAPTURE_H
|
|
|
|
|