mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-22 22:35:59 +01:00
19 lines
326 B
C
19 lines
326 B
C
|
#ifndef SCREENCAST_H
|
||
|
#define SCREENCAST_H
|
||
|
|
||
|
#include <errno.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
#include <sys/wait.h>
|
||
|
#include <sys/mman.h>
|
||
|
#include <pthread.h>
|
||
|
|
||
|
#include "pipewire_screencast.h"
|
||
|
#include "screencast_common.h"
|
||
|
#include "wlr_screencast.h"
|
||
|
#include "xdpw.h"
|
||
|
|
||
|
#endif
|