aboutsummaryrefslogtreecommitdiff
path: root/src/qda.h
blob: 316777e78503daa587c0f29e3ec6ccdadc394789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef QDA_H
#define QDA_H

typedef struct {
	unsigned long offset;
	unsigned long size;
	unsigned long bytes;
	unsigned char* fileName[256];
} QDAHeader;

QDAHeader headers[29]; //names, offsets, and sizes of each sheet
int initQDA();

#endif