comparison scid/theme.h @ 28:4c16bb25e4f1

scid: implement themes in javascript
author David Demelier <markand@malikania.fr>
date Thu, 04 Aug 2022 06:09:54 +0200
parents
children 695637f1d8a7
comparison
equal deleted inserted replaced
27:dae2de19ca5d 28:4c16bb25e4f1
1 #ifndef SCID_THEME_H
2 #define SCID_THEME_H
3
4 struct theme;
5
6 struct theme *
7 theme_open(const char *directory);
8
9 const char *
10 theme_path(struct theme *t, const char *filename);
11
12 char *
13 theme_render_index(struct theme *t, const char *json);
14
15 void
16 theme_free(struct theme *t);
17
18 #endif /* !SCID_THEME_H */