1/*
2 * tkUnixConfig.c --
3 *
4 *	This module implements the Unix system defaults for
5 *	the configuration package.
6 *
7 * Copyright (c) 1997 by Sun Microsystems, Inc.
8 *
9 * See the file "license.terms" for information on usage and redistribution
10 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
11 *
12 * RCS: @(#) $Id: tkUnixConfig.c,v 1.3 2002/08/05 04:30:40 dgp Exp $
13 */
14
15#include "tk.h"
16#include "tkInt.h"
17
18
19/*
20 *----------------------------------------------------------------------
21 *
22 * TkpGetSystemDefault --
23 *
24 *	Given a dbName and className for a configuration option,
25 *	return a string representation of the option.
26 *
27 * Results:
28 *	Returns a Tk_Uid that is the string identifier that identifies
29 *	this option. Returns NULL if there are no system defaults
30 *	that match this pair.
31 *
32 * Side effects:
33 *	None, once the package is initialized.
34 *
35 *----------------------------------------------------------------------
36 */
37
38Tcl_Obj *
39TkpGetSystemDefault(tkwin, dbName, className)
40    Tk_Window tkwin;		/* A window to use. */
41    CONST char *dbName;		/* The option database name. */
42    CONST char *className;		/* The name of the option class. */
43{
44    return NULL;
45}
46