File: gb_map.h

package info (click to toggle)
arb 6.0.2-1%2Bdeb8u1
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie
  • size: 65,916 kB
  • ctags: 53,258
  • sloc: ansic: 394,903; cpp: 250,252; makefile: 19,620; sh: 15,878; perl: 10,461; fortran: 6,019; ruby: 683; xml: 503; python: 53; awk: 32
file content (33 lines) | stat: -rw-r--r-- 1,165 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// =============================================================== //
//                                                                 //
//   File      : gb_map.h                                          //
//   Purpose   :                                                   //
//                                                                 //
//   Institute of Microbiology (Technical University Munich)       //
//   http://www.arb-home.de/                                       //
//                                                                 //
// =============================================================== //

#ifndef GB_MAP_H
#define GB_MAP_H

#ifndef GB_LOCAL_H
#include "gb_local.h"
#endif

#define ADMAP_ID      "ARBDB Mapfile"
#define ADMAP_ID_LEN  13
#define ADMAP_VERSION 5

struct gb_map_header
{
    char        mapfileID[ADMAP_ID_LEN+1];
    long        version;
    long        byte_order;
    GB_MAIN_IDX main_idx;                           // main_idx used in GBDATA and GBCONTAINER
    long        main_data_offset;                   // offset of Main->data in MAP-File
};

#else
#error gb_map.h included twice
#endif // GB_MAP_H