1 #ifndef CLIB_BUGREPORT_PROTOS_H 2 #define CLIB_BUGREPORT_PROTOS_H 3 4 /* 5 bugreport.library C prototypes 6 7 Copyright (c) 2004 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif /* __cplusplus */ 13 14 void SendBug(STRPTR address, struct TagItem *taglist); 15 void BPrintf(STRPTR format, ...); 16 void BPutStr(STRPTR string); 17 void ClearBug(void); 18 19 #ifndef USE_INLINE_STDARG 20 21 void SendBugTags(STRPTR address, Tag tag1, ...); 22 23 #endif 24 25 #ifdef __cplusplus 26 } 27 #endif /* __cplusplus */ 28 29 30 #endif /* CLIB_BUGREPORT_PROTOS_H */