define __KERNEL_STRICT_NAMES to avoid inclusion of kernel types on systems that carry...
[cake.git] / rom / workbench / handler_support.h
blob5dc854eafab217cb067896d14de921dc62932542
1 #ifndef _HANDLER_SUPPORT_H_
2 #define _HANDLER_SUPPORT_H_
4 /*
5 Copyright © 2003, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include "workbench_intern.h"
11 /*** Prototypes *************************************************************/
12 struct WBCommandMessage *__CreateWBCM_WB(enum WBCM_Type type, struct WorkbenchBase *WorkbenchBase);
13 VOID __DestroyWBCM_WB(struct WBCommandMessage *message, struct WorkbenchBase *WorkbenchBase);
15 /*** Macros *****************************************************************/
16 #define CreateWBCM(type) (__CreateWBCM_WB((type), LB(WorkbenchBase)))
17 #define DestroyWBCM(message) (__DestroyWBCM_WB((message), LB(WorkbenchBase)))
19 #endif /* _HANDLER_SUPPORT_H_ */