%% Data and meta data (a.k.a. info) are stored in the same table. %% This is a table of the first byte in data %% 0 = before meta data %% 1 = meta data %% 2 = before data %% >= 8 = data -define(INFO_START, 0). -define(INFO_TAG, 1). -define(DATA_START, 2). -define(BAG_CNT, 32). % Number of bits used for bag object counter -define(MAX_BAG, 16#FFFFFFFF). -define(VSN, 2).