revert between 56095 -> 55830 in arch
[AROS.git] / workbench / network / stacks / AROSTCP / syslog / main.h
blobee674026ccff86b4ecf34c552e77524a31563c9b
1 /* MediaLogger */
3 #include <intuition/classusr.h>
4 #include <syslog.h>
6 #define findobj(parent, id) (Object*)DoMethod(parent, MUIM_FindUData, id)
8 #define MENUBAR -1
9 #define MENU_QUIT 7
10 #define MENU_SAVEAS 8
11 #define MENU_SETTINGS 9
12 #define MENU_CLEAR 10
14 #define PREFS_BUTTON_CANCEL 24
15 #define PREFS_BUTTON_USE 25
16 #define PREFS_BUTTON_SAVE 26
17 #define PREFS_POPPEN_ERRORS 27
18 #define PREFS_POPPEN_IMPORTANT 28
19 #define PREFS_POPPEN_OTHERS 29
21 extern struct Library *MUIMasterBase;
22 #if !defined(__AROS__)
23 extern struct Library *UtilityBase,
24 *GfxBase,
25 *SysBase,
26 *DOSBase,
27 *LocaleBase,
28 *IntuitionBase;
29 #endif
31 extern struct Locale *Locale;
32 extern Object *List, *SWin, *DbgLevel;
34 struct SysLogEntry
36 ULONG Level;
37 STRPTR Time;
38 STRPTR ProcessName;
39 STRPTR EventDescription;