Tabs to spaces; more consistent and conventional formatting.
[AROS.git] / rom / filesys / fat / support.h
blobb6c7ba7ceb9769d892cc05dd924e69b8d6fea91e
1 /*
2 * fat-handler - FAT12/16/32 filesystem handler
4 * Copyright © 2006 Marek Szyprowski
5 * Copyright © 2007-2015 The AROS Development Team
7 * This program is free software; you can redistribute it and/or modify it
8 * under the same terms as AROS itself.
10 * $Id$
13 #ifndef FAT_HANDLER_SUPPORT_H
14 #define FAT_HANDLER_SUPPORT_H
16 #include <exec/types.h>
17 #include <dos/dosextens.h>
19 void SendEvent(LONG event, struct Globals *glob);
20 void ErrorMessageArgs(char *fmt, IPTR *args, struct Globals *glob);
22 #define ErrorMessage(fmt, ...) \
23 { \
24 IPTR __args[] = {__VA_ARGS__}; \
25 ErrorMessageArgs(fmt, __args, glob); \
28 int ilog2(ULONG data);
29 #define log2 ilog2
31 #endif