mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2025-02-18 09:42:07 +01:00
18 lines
374 B
C
18 lines
374 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include "logger.h"
|
|
|
|
struct config_screencast {
|
|
char *output_name;
|
|
};
|
|
|
|
struct xdpw_config {
|
|
struct config_screencast screencast_conf;
|
|
};
|
|
|
|
void print_config(enum LOGLEVEL loglevel, struct xdpw_config *config);
|
|
void finish_config(struct xdpw_config *config);
|
|
void init_config(char ** const configfile, struct xdpw_config *config);
|
|
|
|
#endif
|