1 #ifndef UTILITY_UTILITY_H 2 #define UTILITY_UTILITY_H 3 4 /* 5 utility.library include 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 EXEC_LIBRARIES_H 15 # include <exec/libraries.h> 16 #endif 17 18 #pragma pack(2) 19 20 21 #define UTILITYNAME "utility.library" 22 23 24 struct UtilityBase 25 { 26 struct Library ub_LibNode; 27 UBYTE ub_Language; 28 UBYTE ub_Reserved; 29 }; 30 31 32 #pragma pack() 33 34 #endif /* UTILITY_UTILITY_H */