1 #ifndef CLIB_SYSDEBUG_PROTOS_H 2 #define CLIB_SYSDEBUG_PROTOS_H 3 4 /* 5 sysdebug C prototypes 6 7 Copyright © 2019 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef EXEC_TYPES_H 11 # include <exec/types.h> 12 #endif 13 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif /* __cplusplus */ 18 19 STRPTR SysDebugFindSeg(ULONG Address, ULONG *SegNum, ULONG *Offset); 20 /* V52 */ 21 LONG SysDebugFindSegTagList(struct TagItem *taglist); 22 #if !defined(USE_INLINE_STDARG) 23 LONG SysDebugFindSegTags(ULONG tag1, ...); 24 #endif 25 void SysDebugFreeArray(APTR array); 26 void SysDebugLock(void); 27 void SysDebugUnLock(void); 28 29 #ifdef __cplusplus 30 } 31 #endif /* __cplusplus */ 32 33 #endif /* CLIB_SYSDEBUG_PROTOS_H */