1/*
2 * Copyright 2006, Haiku.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Stephan A��mus <superstippi@gmx.de>
7 */
8
9#ifndef SUPPORT_SETTINGS_H
10#define SUPPORT_SETTINGS_H
11
12#include <GraphicsDefs.h>
13
14class BMessage;
15
16status_t load_settings(BMessage* message, const char* fileName,
17					   const char* folder = NULL);
18
19status_t save_settings(BMessage* message, const char* fileName,
20					   const char* folder = NULL);
21
22
23# endif // SUPPORT_SETTINGS_H
24