Updated PCI IDs to latest snapshot.
[tangerine.git] / workbench / classes / zune / prefseditor / prefseditor_private.h
blobeae747c696b6dbd07c0d82cafa6b6273dd6698a3
1 #ifndef _PREFSEDITOR_PRIVATE_H_
2 #define _PREFSEDITOR_PRIVATE_H_
4 /*
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.
9 $Id$
12 #include <exec/types.h>
13 #include <dos/bptr.h>
15 /*** Instance data **********************************************************/
16 struct PrefsEditor_DATA
18 BOOL ped_Changed,
19 ped_Testing,
20 ped_CanSave,
21 ped_CanTest;
22 STRPTR ped_Name,
23 ped_Path;
24 BPTR ped_BackupFH;
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_ */