xref: /haiku/src/apps/icon-o-matic/generic/support/support_settings.h (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
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 
14 class BMessage;
15 
16 status_t load_settings(BMessage* message, const char* fileName,
17 					   const char* folder = NULL);
18 
19 status_t save_settings(BMessage* message, const char* fileName,
20 					   const char* folder = NULL);
21 
22 
23 # endif // SUPPORT_SETTINGS_H
24