~ubuntu-branches/ubuntu/edgy/ncbi-tools6/edgy

« back to all changes in this revision

Viewing changes to sequin/sbtedit.c

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2006-07-19 23:28:07 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060719232807-et3cdmcjgmnyleyx
Tags: 6.1.20060507-3ubuntu1
Re-merge with Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
*
30
30
* Version Creation Date:   5/17/2005
31
31
*
32
 
* $Revision: 1.3 $
 
32
* $Revision: 1.4 $
33
33
*
34
34
* File Description: 
35
35
* This file provides the Main function for the standalone Submission Template
636
636
  return TRUE;
637
637
}
638
638
 
639
 
static Int2 GetSequinAppParam (CharPtr section, CharPtr type, CharPtr dflt, CharPtr buf, Int2 buflen)
 
639
static Int2 LclGetSequinAppParam (CharPtr section, CharPtr type, CharPtr dflt, CharPtr buf, Int2 buflen)
640
640
 
641
641
{
642
642
  Int2  rsult;
694
694
 #ifdef USE_TAXON
695
695
  useTaxon = TRUE;
696
696
#endif
697
 
  if (GetSequinAppParam ("SETTINGS", "USETAXON", NULL, str, sizeof (str))) {
 
697
  if (LclGetSequinAppParam ("SETTINGS", "USETAXON", NULL, str, sizeof (str))) {
698
698
    if (StringICmp (str, "TRUE") == 0) {
699
699
      useTaxon = TRUE;
700
700
    }
701
701
  }
702
702
  
703
 
  if (GetSequinAppParam ("SETTINGS", "INDEXERVERSION", NULL, str, sizeof (str))) {
 
703
  if (LclGetSequinAppParam ("SETTINGS", "INDEXERVERSION", NULL, str, sizeof (str))) {
704
704
      SetAppProperty ("InternalNcbiSequin", (void *) 1024);
705
705
  }
706
706
#ifdef INTERNAL_NCBI_SEQUIN