This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
FeedbackD-Configuration/src/main.h

17 lines
241 B
C

#ifndef MAIN_H
#define MAIN_H
#include <json-glib/json-glib.h>
// Represnts One Item In A Profile
struct event_location {
JsonArray *profile;
int id;
};
void free_userdata(GtkWidget *, void *);
void reload_profiles(int);
#endif