1 #ifndef PREFS_POINTER_H
2 #define PREFS_POINTER_H
5 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
8 Desc: Pointer prefs definitions
13 # include <exec/types.h>
16 #ifndef LIBRARIES_IFFPARSE_H
17 # include <libraries/iffparse.h>
20 #define ID_PNTR MAKE_ID('P','N','T','R')
44 /* New preferences file, AROS-specific */
45 /* Not stable yet, subject to change */
47 #define ID_NPTR MAKE_ID('N','P','T','R')
49 struct NewPointerPrefs
51 UWORD npp_Which
; /* Which Intuition pointer to replace */
52 UWORD npp_AlphaValue
; /* Alpha channel value if not specified in the file */
53 ULONG npp_WhichInFile
; /* Which pointer to take from the file */
54 UWORD npp_X
, npp_Y
; /* Hotspot coordinates */
55 char npp_File
[0]; /* NULL-terminated file name follows */
58 #endif /* PREFS_POINTER_H */