Forgotten changes that should have been part of the r45368 64-bit fix.
[AROS.git] / rom / filesys / CDVDFS / src / intui.h
blobf47e8afe75782143cff422cd116495506e4f9db8
1 #ifndef INTUI_H
2 #define INTUI_H
3 /* intui.h: */
5 #include "globals.h"
7 void Init_Intui(struct CDVDBase *global);
8 void Close_Intui(struct CDVDBase *global);
9 void Display_Error_Tags(struct CDVDBase *global, char *, APTR);
10 #define Display_Error(_p_msg, ...) \
11 ({ \
12 IPTR _tags[] = { __VA_ARGS__ }; \
13 Display_Error_Tags(global, _p_msg, (CONST APTR )_tags); \
15 void Show_CDDA_Icon(struct CDVDBase *global);
16 void Hide_CDDA_Icon(struct CDVDBase *global);
18 #endif