application.mui: implemented MUIM_Application_UnpushMethod
[AROS.git] / compiler / arossupport / include / arossupportbase.h
blob4cea858df6a9190dd566274ab36f55434ff08a61
1 #ifndef AROS_AROSSUPPORTBASE_H
2 #define AROS_AROSSUPPORTBASE_H
4 #ifndef EXEC_LISTS_H
5 #include <exec/lists.h>
6 #endif
8 /*
9 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
10 $Id$
13 #include <stdarg.h>
15 struct AROSSupportBase
17 void * StdOut;
18 int (*kprintf)(const char *, ...);
19 int (*rkprintf)(const char *, const char *, int, const char *, ...);
20 int (*vkprintf)(const char *, va_list);
21 void * DebugConfig;
24 #endif /* AROS_AROSSUPPORTBASE_H */