mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-06-03 07:33:55 +00:00
11 lines
144 B
C++
11 lines
144 B
C++
class BMP
|
|
{
|
|
public:
|
|
size_t width;
|
|
size_t height;
|
|
size_t byteWidth;
|
|
uint8_t bitsPerPixel;
|
|
uint8_t bytesPerPixel;
|
|
uint8_t *image;
|
|
};
|