summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorlfb <lfb>1999-03-09 01:36:06 (GMT)
committerlfb <lfb>1999-03-09 01:36:06 (GMT)
commit8747f752cb1d54d0854a25b064d685bd68e839c1 (patch)
treee54955be8813bc6874db9a52e707845fb2b73d3e /unix
parentf1d8bd42b49e8430b3f9734e1e80cfd781c5ebf7 (diff)
downloadtk-8747f752cb1d54d0854a25b064d685bd68e839c1.zip
tk-8747f752cb1d54d0854a25b064d685bd68e839c1.tar.gz
tk-8747f752cb1d54d0854a25b064d685bd68e839c1.tar.bz2
Added TkpThreadInit function for performing thread-specific
initialization of Menu module. Only does real work on Windows.
Diffstat (limited to 'unix')
-rw-r--r--unix/tkUnixMenu.c29
1 files changed, 28 insertions, 1 deletions
diff --git a/unix/tkUnixMenu.c b/unix/tkUnixMenu.c
index 1fc87c6..4ab1221 100644
--- a/unix/tkUnixMenu.c
+++ b/unix/tkUnixMenu.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixMenu.c,v 1.1.4.5 1998/11/25 22:13:20 stanton Exp $
+ * RCS: @(#) $Id: tkUnixMenu.c,v 1.1.4.6 1999/03/09 01:36:07 lfb Exp $
*/
#include "tkPort.h"
@@ -1657,3 +1657,30 @@ TkpMenuInit()
* Nothing to do.
*/
}
+
+
+/*
+ *----------------------------------------------------------------------
+ *
+ * TkpMenuThreadInit --
+ *
+ * Does platform-specific initialization of thread-specific
+ * menu state.
+ *
+ * Results:
+ * None.
+ *
+ * Side effects:
+ * None.
+ *
+ *----------------------------------------------------------------------
+ */
+
+void
+TkpMenuThreadInit()
+{
+ /*
+ * Nothing to do.
+ */
+}
+