mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 15:35:58 +01:00
a3e203584a
In file included from ../src/screencast/wlr_screencast.c:18: ../include/pipewire_screencast.h:7:9: error: 'ALIGN' macro redefined [-Werror,-Wmacro-redefined] #define ALIGN 16 ^ /usr/include/machine/param.h:79:9: note: previous definition is here #define ALIGN(p) _ALIGN(p) ^
13 lines
343 B
C
13 lines
343 B
C
#ifndef PIPEWIRE_SCREENCAST_H
|
|
#define PIPEWIRE_SCREENCAST_H
|
|
|
|
#include "screencast_common.h"
|
|
|
|
#define XDPW_PWR_BUFFERS 1
|
|
#define XDPW_PWR_ALIGN 16
|
|
|
|
void xdpw_pwr_stream_init(struct xdpw_screencast_instance *cast);
|
|
int xdpw_pwr_core_connect(struct xdpw_state *state);
|
|
void xdpw_pwr_stream_destroy(struct xdpw_screencast_instance *cast);
|
|
|
|
#endif
|