5 Copyright © 2010, The AROS Development Team. All rights reserved.
9 #include <prefs/pointer.h>
12 /*********************************************************************************************/
14 #define MAXPOINTER (2)
15 #define NAMEBUFLEN (1024)
17 /*********************************************************************************************/
20 struct NewPointerPrefs has as last element an empty array
22 struct ExtPointerPrefs
24 struct NewPointerPrefs npp
;
25 TEXT filename
[NAMEBUFLEN
];
28 /*********************************************************************************************/
30 BOOL
Prefs_HandleArgs(STRPTR from
, BOOL use
, BOOL save
);
31 BOOL
Prefs_ImportFH(BPTR fh
);
32 BOOL
Prefs_ExportFH(BPTR fh
);
33 BOOL
Prefs_Default(VOID
);
35 /*********************************************************************************************/
37 extern struct ExtPointerPrefs pointerprefs
[MAXPOINTER
];
39 /*********************************************************************************************/
41 #endif /* _PREFS_H_ */