1 #ifndef _PREFSEDITOR_PRIVATE_H_
2 #define _PREFSEDITOR_PRIVATE_H_
5 Copyright © 2004, The AROS Development Team. All rights reserved.
6 This file is part of the PrefsEditor class, which is distributed under
7 the terms of version 2.1 of the GNU Lesser General Public License.
12 #include <exec/types.h>
15 /*** Instance data **********************************************************/
16 struct PrefsEditor_DATA
25 TEXT ped_BackupPath
[15];
26 /* Large enough for BACKUP_PREFIX, 8 digits and NULL byte */
29 #define BACKUP_PREFIX "T:PT"
31 /*** Private methods ********************************************************/
32 #define MUIM_PrefsEditor_ExportToDirectory (TAG_USER | 0x10000000)
33 struct MUIP_PrefsEditor_ExportToDirectory
{ULONG MethodID
; CONST_STRPTR directory
;};
34 #define MUIM_PrefsEditor_ImportFromDirectory (TAG_USER | 0x10000001)
35 struct MUIP_PrefsEditor_ImportFromDirectory
{ULONG MethodID
; CONST_STRPTR directory
;};
37 #endif /* _PREFSEDITOR_PRIVATE_H_ */