mirror of
https://github.com/LibreSplit/LibreSplit.git
synced 2026-04-27 14:20:24 +00:00
This should allow for plugins to refer to LibreSplit's functions without having to pull in half of the codebase.
11 lines
426 B
C
11 lines
426 B
C
#pragma once
|
|
|
|
#include "include/gui/app_window.h"
|
|
|
|
// Linker-provided symbols from fallback.o
|
|
extern const unsigned char _binary____src_fallback_css_start[];
|
|
extern const unsigned char _binary____src_fallback_css_end[];
|
|
|
|
int ls_app_window_find_theme(const LSAppWindow* win, const char* name, const char* variant, char* out_path);
|
|
|
|
void ls_app_load_theme_with_fallback(LSAppWindow* win, const char* name, const char* variant);
|