1 #ifndef PREFS_ASL_H
    2 #define PREFS_ASL_H
    3 
    4 /*
    5 	asl.library prefs definitions (V45)
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef LIBRARIES_IFFPARSE_H
   11 # include <libraries/iffparse.h>
   12 #endif
   13 
   14 #ifndef LIBRARIES_ASL_H
   15 # include <libraries/asl.h>
   16 #endif
   17 
   18 #pragma pack(2)
   19 
   20 
   21 #define ID_ASL  MAKE_ID('A','S','L',' ')
   22 
   23 
   24 struct AslPrefs
   25 {
   26 	LONG  ap_Reserved[4];
   27 
   28 	UBYTE ap_SortBy;
   29 	UBYTE ap_SortDrawers;
   30 	UBYTE ap_SortOrder;
   31 
   32 	UBYTE ap_SizePosition;
   33 
   34 	WORD  ap_RelativeLeft;
   35 	WORD  ap_RelativeTop;
   36 
   37 	UBYTE ap_RelativeWidth;
   38 	UBYTE ap_RelativeHeight;
   39 };
   40 
   41 
   42 #pragma pack()
   43 
   44 #endif /* PREFS_ASL_H */