tkMacConfig.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tkMacConfig.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.  *
  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: tkMacConfig.c,v 1.3 2002/08/05 04:30:40 dgp Exp $
  13.  */
  14. #include "tk.h"
  15. #include "tkInt.h"
  16. /*
  17.  *----------------------------------------------------------------------
  18.  *
  19.  * TkpGetSystemDefault --
  20.  *
  21.  * Given a dbName and className for a configuration option,
  22.  * return a string representation of the option.
  23.  *
  24.  * Results:
  25.  * Returns a Tk_Uid that is the string identifier that identifies
  26.  * this option. Returns NULL if there are no system defaults
  27.  * that match this pair.
  28.  *
  29.  * Side effects:
  30.  * None, once the package is initialized.
  31.  *
  32.  *----------------------------------------------------------------------
  33.  */
  34. Tcl_Obj *
  35. TkpGetSystemDefault(
  36.     Tk_Window tkwin, /* A window to use. */
  37.     CONST char *dbName, /* The option database name. */
  38.     CONST char *className) /* The name of the option class. */
  39. {
  40.     return NULL;
  41. }