1 #ifndef PREFS_PREFHDR_H
    2 #define PREFS_PREFHDR_H
    3 
    4 /*
    5 	prefs header definitions
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #ifndef LIBRARIES_IFFPARSE_H
   15 # include <libraries/iffparse.h>
   16 #endif
   17 
   18 #pragma pack(2)
   19 
   20 
   21 #define ID_PREF  MAKE_ID('P','R','E','F')
   22 #define ID_PRHD  MAKE_ID('P','R','H','D')
   23 
   24 
   25 struct PrefHeader
   26 {
   27 	UBYTE ph_Version;
   28 	UBYTE ph_Type;
   29 	ULONG ph_Flags;
   30 };
   31 
   32 
   33 #pragma pack()
   34 
   35 #endif /* PREFS_PREFHDR_H */