home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.5 / Include / include_h / clib / ddebug_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-01  |  1.2 KB  |  49 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 DPrintF( CONST_STRPTR formatString, ... );
  38. VOID dprintf( CONST_STRPTR formatString, ... );
  39. VOID DPutStr( CONST_STRPTR string );
  40. VOID dputstr( CONST_STRPTR string );
  41. VOID dputs( CONST_STRPTR string );
  42. VOID DPutS( CONST_STRPTR string );
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif /* __cplusplus */
  47.  
  48. #endif   /* CLIB_DDEBUG_PROTOS_H */
  49.