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