Change gfx.hidd API -:
[AROS.git] / workbench / fs / ntfs / support.h
blob2c008ab2cea814d9d8e07e4b5ad3c6bc87d485e9
1 /*
2 * ntfs.handler - New Technology FileSystem handler
4 * Copyright © 2012 The AROS Development Team
6 * This program is free software; you can redistribute it and/or modify it
7 * under the same terms as AROS itself.
9 * $Id $
12 #ifndef NTFS_HANDLER_SUPPORT_H
13 #define NTFS_HANDLER_SUPPORT_H
15 #include <exec/types.h>
16 #include <dos/dosextens.h>
18 void SendEvent(LONG event);
19 void ErrorMessageArgs(char *fmt, IPTR *args);
20 APTR _AllocVecPooled(APTR mem_pool, ULONG size);
21 void _FreeVecPooled(APTR mem_pool, APTR vecaddr);
23 #define ErrorMessage(fmt, ...) \
24 { \
25 IPTR __args[] = {__VA_ARGS__}; \
26 ErrorMessageArgs(fmt, __args); \
29 //#define log2 ilog2
31 #endif