ncbicfg.c.in
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbicfg.c.in,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:09:03  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* Hey, Emacs, treat this as -*- C -*- ! */
  10. /*  $Id: ncbicfg.c.in,v 1000.0 2003/10/29 15:09:03 gouriano Exp $
  11.  * ===========================================================================
  12.  *
  13.  *                            PUBLIC DOMAIN NOTICE
  14.  *               National Center for Biotechnology Information
  15.  *
  16.  *  This software/database is a "United States Government Work" under the
  17.  *  terms of the United States Copyright Act.  It was written as part of
  18.  *  the author's official duties as a United States Government employee and
  19.  *  thus cannot be copyrighted.  This software/database is freely available
  20.  *  to the public for use. The National Library of Medicine and the U.S.
  21.  *  Government have not placed any restriction on its use or reproduction.
  22.  *
  23.  *  Although all reasonable efforts have been taken to ensure the accuracy
  24.  *  and reliability of the software and data, the NLM and the U.S.
  25.  *  Government do not and cannot warrant the performance or results that
  26.  *  may be obtained by using this software or data. The NLM and the U.S.
  27.  *  Government disclaim all warranties, express or implied, including
  28.  *  warranties of performance, merchantability or fitness for any particular
  29.  *  purpose.
  30.  *
  31.  *  Please cite the author in any work or product based on this material.
  32.  * 
  33.  * ===========================================================================
  34.  *
  35.  * Author:  Aaron Ucko
  36.  *
  37.  * File Description:
  38.  *   Access to miscellaneous global configuration settings
  39.  *
  40.  */
  41. #include <corelib/ncbicfg.h>
  42. static const char s_DefaultRunpath[] = "@ncbi_runpath@";
  43. static const char *s_Runpath         = s_DefaultRunpath;
  44. const char* NCBI_GetDefaultRunpath(void)
  45. {
  46.     return s_DefaultRunpath;
  47. }
  48. const char* NCBI_GetRunpath(void)
  49. {
  50.     return s_Runpath;
  51. }
  52. void        NCBI_SetRunpath(const char* runpath)
  53. {
  54.     s_Runpath = runpath;
  55. }
  56. /*
  57.  * ===========================================================================
  58.  * $Log: ncbicfg.c.in,v $
  59.  * Revision 1000.0  2003/10/29 15:09:03  gouriano
  60.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  61.  *
  62.  * Revision 1.2  2002/04/11 21:08:01  ivanov
  63.  * CVS log moved to end of the file
  64.  *
  65.  * Revision 1.1  2002/03/11 15:30:12  ucko
  66.  * Dropped NCBI_RUNPATH from ncbiconf.h in favor of new API in corelib/ncbicfg.h
  67.  *
  68.  * ===========================================================================
  69.  */