home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / ddebug_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-20  |  1.3 KB  |  50 lines

  1. #ifndef  CLIB_DDEBUG_PROTOS_H
  2. #define  CLIB_DDEBUG_PROTOS_H
  3.  
  4. /*
  5. **    $VER: ddebug_protos.h 40.1 (17.5.1996)
  6. **    Includes Release 44.1
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    Copyright © 1999 Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif /* __cplusplus */
  17.  
  18. #ifndef  EXEC_TYPES_H
  19. #include <exec/types.h>
  20. #endif
  21. VOID DDoFmt( CONST STRPTR formatString, CONST APTR dataStream, CONST APTR putChProc, APTR putChData );
  22. LONG DGetChar( VOID );
  23. LONG dgetchar( VOID );
  24. LONG dgetch( VOID );
  25. LONG dgetc( VOID );
  26. LONG DGetNum( VOID );
  27. LONG dgetnum( VOID );
  28. LONG DMayGetChar( VOID );
  29. LONG DMayGetCh( VOID );
  30. VOID DPutChar( LONG ch );
  31. VOID dputchar( LONG ch );
  32. VOID dputch( LONG ch );
  33. VOID dputc( LONG ch );
  34. VOID DPutCh( LONG ch );
  35. VOID DPutFmt( CONST STRPTR formatString, CONST APTR values );
  36. VOID DVPrintF( CONST STRPTR formatString, CONST APTR values );
  37. VOID dvprintf( CONST STRPTR formatString, CONST APTR values );
  38. VOID DPrintF( CONST STRPTR formatString, ... );
  39. VOID dprintf( CONST STRPTR formatString, ... );
  40. VOID DPutStr( CONST STRPTR string );
  41. VOID dputstr( CONST STRPTR string );
  42. VOID dputs( CONST STRPTR string );
  43. VOID DPutS( CONST STRPTR string );
  44.  
  45. #ifdef __cplusplus
  46. }
  47. #endif /* __cplusplus */
  48.  
  49. #endif   /* CLIB_DDEBUG_PROTOS_H */
  50.