mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 07:25:58 +01:00
18 lines
326 B
C
18 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
|