aboutsummaryrefslogtreecommitdiff
path: root/src/trailer.h
blob: 4d20022dcc245077f42805a73228529b430d7d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (C) 2010 IEQualize GmbH <info@iequalize.de>
 *
 */
#ifndef _TRAILER_H
#define _TRAILER_H

/* max length of version string, e.g. "0.33.1pre1" */
#define MAX_VERSION 16

struct update_trailer {
	uint8_t		version[MAX_VERSION];
	uint32_t	model_tag;
	uint32_t	loopaes_length;
	/* keep the trailer version info last */
	uint32_t	trailer_version;
};

#endif