mirror of
https://github.com/LibreSplit/LibreSplit.git
synced 2026-04-28 23:00:24 +00:00
This should allow for plugins to refer to LibreSplit's functions without having to pull in half of the codebase.
14 lines
323 B
C
14 lines
323 B
C
#pragma once
|
|
|
|
#include "include/settings/definitions.h"
|
|
#include <gtk/gtk.h>
|
|
|
|
extern AppConfig cfg;
|
|
|
|
typedef struct LSGuiSetting {
|
|
GtkWidget* widget;
|
|
GtkEntryBuffer* entry_buffer;
|
|
ConfigEntry* settings_entry;
|
|
} LSGuiSetting;
|
|
|
|
void show_settings_dialog(GSimpleAction* action, GVariant* parameter, gpointer app);
|