xdg-desktop-portal-hyprland/include/config.h

19 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