mirror of
https://github.com/LibreSplit/LibreSplit.git
synced 2026-04-27 22:30:30 +00:00
This should allow for plugins to refer to LibreSplit's functions without having to pull in half of the codebase.
7 lines
148 B
C
7 lines
148 B
C
#pragma once
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
void add_class(GtkWidget* widget, const char* class);
|
|
|
|
void remove_class(GtkWidget* widget, const char* class);
|