1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_DIR_H
#define LABWC_DIR_H
#include <wayland-server-core.h>
struct path {
char *string;
struct wl_list link;
};
struct wl_list *paths_get_prev(struct wl_list *elm);
struct wl_list *paths_get_next(struct wl_list *elm);
void paths_config_create(struct wl_list *paths, const char *filename);
void paths_theme_create(struct wl_list *paths, const char *theme_name,
const char *filename);
void paths_destroy(struct wl_list *paths);
#endif /* LABWC_DIR_H */
|