summaryrefslogtreecommitdiff
path: root/tk/unix/tkUnixConfig.c
diff options
context:
space:
mode:
authorIan Roxborough <irox@redhat.com>2001-09-10 00:22:29 +0000
committerIan Roxborough <irox@redhat.com>2001-09-10 00:22:29 +0000
commitee7709783c85577eba6af30cd711e17e403befed (patch)
tree74233a880ee1f7e13c7ded61d093318e8c6e7d5c /tk/unix/tkUnixConfig.c
parenta850c17c374d03259483e799b09326d255e17487 (diff)
downloadgdb-TK_8_3.tar.gz
Tk 8.3 upgradeTK_8_3
Diffstat (limited to 'tk/unix/tkUnixConfig.c')
-rw-r--r--tk/unix/tkUnixConfig.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/tk/unix/tkUnixConfig.c b/tk/unix/tkUnixConfig.c
new file mode 100644
index 00000000000..9db523a9d40
--- /dev/null
+++ b/tk/unix/tkUnixConfig.c
@@ -0,0 +1,46 @@
+/*
+ * tkUnixConfig.c --
+ *
+ * This module implements the Unix system defaults for
+ * the configuration package.
+ *
+ * Copyright (c) 1997 by Sun Microsystems, Inc.
+ *
+ * See the file "license.terms" for information on usage and redistribution
+ * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+ *
+ * RCS: @(#) $Id$
+ */
+
+#include "tk.h"
+#include "tkInt.h"
+
+
+/*
+ *----------------------------------------------------------------------
+ *
+ * TkpGetSystemDefault --
+ *
+ * Given a dbName and className for a configuration option,
+ * return a string representation of the option.
+ *
+ * Results:
+ * Returns a Tk_Uid that is the string identifier that identifies
+ * this option. Returns NULL if there are no system defaults
+ * that match this pair.
+ *
+ * Side effects:
+ * None, once the package is initialized.
+ *
+ *----------------------------------------------------------------------
+ */
+
+Tcl_Obj *
+TkpGetSystemDefault(tkwin, dbName, className)
+ Tk_Window tkwin; /* A window to use. */
+ char *dbName; /* The option database name. */
+ char *className; /* The name of the option class. */
+{
+ return NULL;
+}
+