1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _include_LzmaFile_interface_h_
#define _include_LzmaFile_interface_h_
extern "C" {
void lzmaopenfile_(char* name);
}
extern "C" {
void lzmafillarray_(double* data, const int& length);
}
extern "C" {
void lzmaclosefile_();
}
extern "C" {
int lzmanextnumber_(double& data);
}
#endif
|