home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / DevGear / Source / Sources / DGDebugging.c next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  304 b   |  19 lines

  1. /*    =============
  2.  *    DGDebugging.c
  3.  *    =============
  4.  */
  5.  
  6. #ifndef _NO_DEBUGGING_AT_ALL_NOT_EVEN_A_LITTLE_BIT
  7.  
  8. #include "DGDebugging.h"
  9.  
  10. /* Universal Headers */
  11. #include <Sound.h>  /* required for SysBeep() */
  12.  
  13. void DebugBeep(void)
  14. {
  15.     SysBeep(1);
  16. }
  17.  
  18. #endif  /* _NO_DEBUGGING_AT_ALL_NOT_EVEN_A_LITTLE_BIT */
  19.