1 #ifndef LIBRARIES_LOG_H 2 #define LIBRARIES_LOG_H 3 4 #ifndef EXEC_TYPES_H 5 #include <exec/types.h> 6 #endif 7 8 #ifndef EXEC_DEVICES_H 9 #include <exec/devices.h> 10 #endif 11 12 #ifndef UTILITY_TAGITEM_H 13 #include <utility/tagitem.h> 14 #endif 15 16 struct LogNotifyMsg 17 { 18 struct Message Msg; 19 ULONG Version; 20 ULONG Type; 21 /* 22 * unknown territory 23 */ 24 }; 25 26 enum 27 { 28 LOGNOTIFYTYPE_PPCEXCEPTION, 29 LOGNOTIFYTYPE_68KEXCEPTION, 30 LOGNOTIFYTYPE_ALERT, 31 LOGNOTIFYTYPE_LOG 32 }; 33 34 #endif /* LIBRARIES_LOG_H */