blob: 2dd1400747f2f1365d594a43ebe98eb0aca8cf89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/**
* @file theme.h
* @author Joe Wingbermuehle
* @date 2006
*
* @brief Header for the theme functions.
*
*/
#ifndef THEME_H
#define THEME_H
/*@{*/
void InitializeThemes();
void StartupThemes();
void ShutdownThemes();
void DestroyThemes();
/*@}*/
/** Add a theme path.
* @param path The path to add.
*/
void AddThemePath(const char *path);
/** Set the theme to use.
* @param name The name of the theme.
*/
void SetTheme(const char *name);
#endif
|