1/*
2 * tkMacOSXConfig.c --
3 *
4 *	This module implements the Macintosh system defaults for
5 *	the configuration package.
6 *
7 * Copyright (c) 1997 by Sun Microsystems, Inc.
8 * Copyright 2001, Apple Computer, Inc.
9 *
10 * See the file "license.terms" for information on usage and redistribution
11 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
12 *
13 * RCS: @(#) $Id: tkMacOSXConfig.c,v 1.2.2.2 2007/04/29 02:26:48 das Exp $
14 */
15
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(
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