source: tags/svn.1.5.4/ARBDB/gb_map.h

Last change on this file was 6328, checked in by westram, 16 years ago
  • comments
    • converted C→C++
    • cleanup
  • GB_is_directory_compressed → GB_is_dictionary_compressed :)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1// =============================================================== //
2//                                                                 //
3//   File      : gb_map.h                                          //
4//   Purpose   :                                                   //
5//                                                                 //
6//   Institute of Microbiology (Technical University Munich)       //
7//   http://www.arb-home.de/                                       //
8//                                                                 //
9// =============================================================== //
10
11#ifndef GB_MAP_H
12#define GB_MAP_H
13
14#ifndef GB_LOCAL_H
15#include "gb_local.h"
16#endif
17
18#define ADMAP_ID      "ARBDB Mapfile"
19#define ADMAP_ID_LEN  13
20#define ADMAP_VERSION 5
21
22struct gb_map_header
23{
24    char        mapfileID[ADMAP_ID_LEN+1];
25    long        version;
26    long        byte_order;
27    GB_MAIN_IDX main_idx;                           // main_idx used in GBDATA and GBCONTAINER
28    long        main_data_offset;                   // offset of Main->data in MAP-File
29};
30
31#else
32#error gb_map.h included twice
33#endif // GB_MAP_H
Note: See TracBrowser for help on using the repository browser.