source: tags/ms_r18q1/ARBDB/gb_load.h

Last change on this file was 6366, checked in by westram, 14 years ago
  • fixed whitespace (scripted)
File size: 1.1 KB
Line 
1// =============================================================== //
2//                                                                 //
3//   File      : gb_load.h                                         //
4//   Purpose   :                                                   //
5//                                                                 //
6//   Institute of Microbiology (Technical University Munich)       //
7//   http://www.arb-home.de/                                       //
8//                                                                 //
9// =============================================================== //
10
11#ifndef GB_LOAD_H
12#define GB_LOAD_H
13
14#define GB_MAIN_ARRAY_SIZE 4096
15
16#define A_TO_I(c) if (c>'9') c-='A'-10; else c-='0'; // @@@ design+name are crap
17
18enum gb_scan_quicks_types {
19    GB_SCAN_NO_QUICK,
20    GB_SCAN_NEW_QUICK,
21    GB_SCAN_OLD_QUICK
22};
23
24struct gb_scandir {
25    int                  highest_quick_index;
26    int                  newest_quick_index;
27    unsigned long        date_of_quick_file;
28    gb_scan_quicks_types type;  // xxx.arb.quick? or xxx.a??
29};
30
31
32#else
33#error gb_load.h included twice
34#endif // GB_LOAD_H
Note: See TracBrowser for help on using the repository browser.