home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / WIN_UTL2 / SAMDU260.ZIP / DEBUGOUT.H < prev    next >
Text File  |  1994-04-01  |  1KB  |  41 lines

  1. /*********************************************************************/
  2. /*                                                                   */
  3. /*    Name:    DEBUGOUT.H                                            */
  4. /*                                                                   */
  5. /*    Copyright (c) Stewart A. Berman 1992,3,4 All rights reserved   */
  6. /*                                                                   */
  7. /*********************************************************************/
  8. #ifndef __DEBUGOUT_H__
  9. #define __DEBUGOUT_H__
  10.  
  11. #include <ctype.h>
  12. #include <string.h>
  13.  
  14. #include "DebugTrc.h"
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif /* __cplusplus */
  19.  
  20. VOID far *    FAR PASCAL DebugOutCreate ( LPCSTR lpczCmdLine ) ;
  21. VOID          FAR PASCAL DebugOutScan   ( LPCSTR lpczCmdLine ) ;
  22. VOID          FAR PASCAL DebugOutOutputIf ( unsigned long ulDFlag, LPCSTR lpczText, LPCSTR lpczTitle, UINT nMFlags ) ;
  23. unsigned long FAR PASCAL DebugOutDebugFlags ( VOID ) ;
  24. char far * FAR PASCAL DebugOutczDebugBuffer ( VOID ) ;
  25.  
  26. #ifdef __cplusplus
  27.            }
  28. #endif /* __cplusplus */
  29.  
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif /* __cplusplus */
  33.  
  34. extern VOID far *pCDebugOut ;
  35.  
  36. #ifdef __cplusplus
  37.            }
  38. #endif /* __cplusplus */
  39.  
  40. #endif /* __DEBUGOUT_H__ */
  41.