diff options
author | das <das> | 2005-09-10 15:11:29 (GMT) |
---|---|---|
committer | das <das> | 2005-09-10 15:11:29 (GMT) |
commit | 458687435342cccdc63a67ba42a8226f672cbdf3 (patch) | |
tree | c58c4e6ac94eb7fa531517a04ce6ac15c83abb1b /macosx/tkMacOSXCarbonEvents.c | |
parent | 9c7f3eb811ce5f8488e0b82488ffedecae471959 (diff) | |
download | tk-458687435342cccdc63a67ba42a8226f672cbdf3.zip tk-458687435342cccdc63a67ba42a8226f672cbdf3.tar.gz tk-458687435342cccdc63a67ba42a8226f672cbdf3.tar.bz2 |
move declarations of Carbon-internal event debugging routines to tkMacOSXCarbonEvents.c
Diffstat (limited to 'macosx/tkMacOSXCarbonEvents.c')
-rw-r--r-- | macosx/tkMacOSXCarbonEvents.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/macosx/tkMacOSXCarbonEvents.c b/macosx/tkMacOSXCarbonEvents.c index ddeec64..9b45c19 100644 --- a/macosx/tkMacOSXCarbonEvents.c +++ b/macosx/tkMacOSXCarbonEvents.c @@ -53,7 +53,7 @@ * software in accordance with the terms specified in this * license. * - * RCS: @(#) $Id: tkMacOSXCarbonEvents.c,v 1.3.2.3 2005/09/10 14:54:17 das Exp $ + * RCS: @(#) $Id: tkMacOSXCarbonEvents.c,v 1.3.2.4 2005/09/10 15:11:29 das Exp $ */ #include "tkInt.h" @@ -67,6 +67,12 @@ #endif */ +#ifdef TK_MAC_DEBUG_CARBON_EVENTS +/* Carbon-internal event debugging routines (c.f. Technote 2124): */ +void _DebugPrintEvent(EventRef inEvent); +void _TraceEventByName(CFStringRef eventName); +#endif /* TK_MAC_DEBUG_CARBON_EVENTS */ + /* Declarations of functions used only in this file */ static OSStatus CarbonEventHandlerProc ( EventHandlerCallRef callRef, |