aboutsummaryrefslogtreecommitdiffstats
path: root/datatrak.h
blob: 3a37e04650069f01f7ea2c4a5e1b8c4caf2f3085 (plain) (blame)
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
34
35
36
37
38
39
40
41
#ifndef DATATRAK_HEADER_H
#define DATATRAK_HEADER_H

#include <string.h>

typedef struct dtrakheader_ {
	int header; //Must be 0xA100;
	int divesNum;
	int dc_serial_1;
	int dc_serial_2;
} dtrakheader;

#define read_bytes(_n) \
	switch (_n) { \
		case 1: \
			if (fread (&lector_bytes, sizeof(char), _n, archivo) != _n) \
				goto bail; \
			tmp_1byte = lector_bytes[0]; \
			break; \
		case 2: \
			if (fread (&lector_bytes, sizeof(char), _n, archivo) != _n) \
				goto bail; \
			tmp_2bytes = two_bytes_to_int (lector_bytes[1], lector_bytes[0]); \
			break; \
		default: \
			if (fread (&lector_word, sizeof(char), _n, archivo) != _n) \
				goto bail; \
			tmp_4bytes = four_bytes_to_long(lector_word[3], lector_word[2], lector_word[1], lector_word[0]); \
			break; \
	}

#define read_string(_property) \
	unsigned char *_property##tmp = (unsigned char *)calloc(tmp_1byte + 1, 1); \
	if (fread((char *)_property##tmp, 1, tmp_1byte, archivo) != tmp_1byte) { \
		free(_property##tmp); \
		goto bail; \
	} \
	_property = (unsigned char *)strcat(to_utf8(_property##tmp), ""); \
	free(_property##tmp);

#endif // DATATRAK_HEADER_H