home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / SpriteFight 2002 v2.0a1 / DebugUtils.h < prev    next >
Encoding:
Text File  |  1994-02-21  |  677 b   |  33 lines  |  [TEXT/KAHL]

  1. ///--------------------------------------------------------------------------------------
  2. //    DebugUtils.h
  3. //
  4. //    Created:    12/17/91 at 12:35:35 AM
  5. //    By:            Tony Myles
  6. //
  7. //    Copyright © 1991-94 Tony Myles, All rights reserved worldwide.
  8. //
  9. //    Description:    prototypes for debugging utility routines
  10. ///--------------------------------------------------------------------------------------
  11.  
  12.  
  13. #ifndef __DEBUGUTILS__
  14. #define __DEBUGUTILS__
  15.  
  16. #ifndef __TYPES__
  17. #include <Types.h>
  18. #endif
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24.  
  25. void DebugNum(long bugNum);
  26. void DebugStrNum(Str255 bugStr, long bugNum);
  27. void FatalError(OSErr err, Str255 errMsgStr);
  28.  
  29.  
  30. #ifdef __cplusplus
  31. };
  32. #endif
  33. #endif