home *** CD-ROM | disk | FTP | other *** search
- /*
- File: DebuggingWindows.h
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #ifndef __EVENTS__
- #include <Events.h>
- #endif
-
- #ifndef __DEBUGGINGWINDOWS__
- #define __DEBUGGINGWINDOWS__
-
- /***********************************|****************************************/
-
- extern void InitializeDebuggingWindows(void);
- extern pascal Boolean WWEvent(EventRecord *anEvent);
-
- inline Boolean
- HandleDebuggingWindowsEvent (EventRecord *event)
- {
- return WWEvent(event);
- }
-
- /***********************************|****************************************/
-
- #endif // __DEBUGGINGWINDOWS__
-
-