blob: ae5b8eb118e4ba7dc48c54b513dca1ec3558e90e (
plain)
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
42
43
44
|
/*! @file compound-file-header.h */
#ifndef COMPOUND_FILE_HEADER_H
#define COMPOUND_FILE_HEADER_H
#include "emb-file.h"
#include "api-start.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _bcf_file_header
{
unsigned char signature[8];
unsigned char CLSID[16]; /* TODO: this should be a separate type */
unsigned short minorVersion;
unsigned short majorVersion;
unsigned short byteOrder;
unsigned short sectorShift;
unsigned short miniSectorShift;
unsigned short reserved1;
unsigned int reserved2;
unsigned int numberOfDirectorySectors;
unsigned int numberOfFATSectors;
unsigned int firstDirectorySectorLocation;
unsigned int transactionSignatureNumber;
unsigned int miniStreamCutoffSize;
unsigned int firstMiniFATSectorLocation;
unsigned int numberOfMiniFatSectors;
unsigned int firstDifatSectorLocation;
unsigned int numberOfDifatSectors;
} bcf_file_header;
extern EMB_PRIVATE bcf_file_header EMB_CALL bcfFileHeader_read(EmbFile* file);
extern EMB_PRIVATE int EMB_CALL bcfFileHeader_isValid(bcf_file_header header);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#include "api-stop.h"
#endif /* COMPOUND_FILE_HEADER_H */
/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */
|