1/*
2 * Copyright 2006, 2013 Stephan A��mus <superstippi@gmx.de>
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5
6#ifndef SUPPORT_H
7#define SUPPORT_H
8
9#include <Rect.h>
10
11
12class BMessage;
13class BResources;
14class BView;
15class BWindow;
16
17
18status_t load_settings(BMessage* message, const char* fileName,
19	const char* folder = NULL);
20
21status_t save_settings(const BMessage* message, const char* fileName,
22	const char* folder = NULL);
23
24status_t get_app_resources(BResources& resources);
25
26void set_small_font(BView* view);
27
28#endif // SUPPORT_H
29