summaryrefslogtreecommitdiffstats
path: root/tk8.6/macosx/tkMacOSXDebug.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-04-22 15:46:20 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-04-22 15:46:20 (GMT)
commit7e8909a08b8e425eeaa69085cbe86e848f2f5650 (patch)
treef26e5e21fe28674bab321d6453ea32b5a4a491e2 /tk8.6/macosx/tkMacOSXDebug.h
parent346eeb31d1c0a2ee959ecfade3cd66e3dc07cf4b (diff)
downloadblt-7e8909a08b8e425eeaa69085cbe86e848f2f5650.zip
blt-7e8909a08b8e425eeaa69085cbe86e848f2f5650.tar.gz
blt-7e8909a08b8e425eeaa69085cbe86e848f2f5650.tar.bz2
backout tcl/tk 8.6.9
Diffstat (limited to 'tk8.6/macosx/tkMacOSXDebug.h')
-rw-r--r--tk8.6/macosx/tkMacOSXDebug.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/tk8.6/macosx/tkMacOSXDebug.h b/tk8.6/macosx/tkMacOSXDebug.h
deleted file mode 100644
index ab37187..0000000
--- a/tk8.6/macosx/tkMacOSXDebug.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * tkMacOSXDebug.h --
- *
- * Declarations of Macintosh specific functions for debugging MacOS events,
- * regions, etc...
- *
- * Copyright 2001-2009, Apple Inc.
- * Copyright (c) 2005-2009 Daniel A. Steffen <das@users.sourceforge.net>
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- */
-
-#ifndef _TKMACDEBUG
-#define _TKMACDEBUG
-
-#ifndef _TKMACINT
-#include "tkMacOSXInt.h"
-#endif
-
-#ifdef TK_MAC_DEBUG
-
-MODULE_SCOPE void* TkMacOSXGetNamedDebugSymbol(const char* module, const char* symbol);
-
-/* Macro to abstract common use of TkMacOSXGetNamedDebugSymbol to initialize named symbols */
-#define TkMacOSXInitNamedDebugSymbol(module, ret, symbol, ...) \
- static ret (* symbol)(__VA_ARGS__) = (void*)(-1L); \
- if (symbol == (void*)(-1L)) { \
- symbol = TkMacOSXGetNamedDebugSymbol(STRINGIFY(module), STRINGIFY(_##symbol));\
- }
-
-#endif /* TK_MAC_DEBUG */
-
-#endif