mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 15:35:58 +01:00
10 lines
133 B
C
10 lines
133 B
C
|
#ifndef SCREENSHOT_H
|
||
|
#define SCREENSHOT_H
|
||
|
|
||
|
|
||
|
struct xdpw_ppm_pixel {
|
||
|
int max_color_value;
|
||
|
unsigned char red, green, blue;
|
||
|
};
|
||
|
|
||
|
#endif
|