1/*
2 * Copyright 2001-2015, Haiku.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		DarkWyrm <bpmagic@columbus.rr.com>
7 *		Rene Gollent <rene@gollent.com>
8 *		Joseph Groover <looncraz@looncraz.net>
9 */
10#ifndef COLORS_H
11#define COLORS_H
12
13
14#include <InterfaceDefs.h>
15
16
17typedef struct {
18	color_which	which;
19	const char*	text;
20} ColorDescription;
21
22
23const ColorDescription* get_color_description(int32 index);
24int32 color_description_count(void);
25void get_default_colors(BMessage* storage);
26void get_current_colors(BMessage* storage);
27
28
29#endif	// COLORS_H
30