2011-07-05 09:18:31 +00:00
|
|
|
#if __WORDSIZE == 32
|
|
|
|
#define _LARGEFILE_SOURCE 1
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#endif
|
|
|
|
|
2011-07-05 11:14:15 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <inttypes.h>
|
2011-07-05 10:50:53 +00:00
|
|
|
#include "xorriso/xorriso.h"
|
2011-07-05 09:18:31 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
cout
|
|
|
|
<< " major:" << Xorriso_header_version_majoR
|
|
|
|
<< " minor:" << Xorriso_header_version_minoR
|
|
|
|
<< " micro:" << Xorriso_header_version_micrO
|
|
|
|
;
|
|
|
|
// << endl;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|