home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AOCE Sample Code / PowerTalk Access Modules / Sample SMSAM / SampleSMSAM Source / SampleSMSAMServer / DebuggingWindows.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  728 b   |  36 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        DebuggingWindows.h
  3.  
  4.     Copyright:    © 1991-1994 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Part of the AOCE Sample SMSAM Package.  Consult the license
  8.     which came with this software for your specific legal rights.
  9.  
  10. */
  11.  
  12.  
  13.  
  14. #ifndef __EVENTS__
  15. #include <Events.h>
  16. #endif
  17.  
  18. #ifndef    __DEBUGGINGWINDOWS__
  19. #define    __DEBUGGINGWINDOWS__
  20.  
  21. /***********************************|****************************************/
  22.  
  23. extern void InitializeDebuggingWindows(void);
  24. extern pascal Boolean WWEvent(EventRecord *anEvent);
  25.  
  26. inline Boolean
  27. HandleDebuggingWindowsEvent (EventRecord *event) 
  28. {
  29.     return WWEvent(event);
  30. }
  31.  
  32. /***********************************|****************************************/
  33.  
  34. #endif    // __DEBUGGINGWINDOWS__
  35.  
  36.