test libisoburn/libisoburn

This commit is contained in:
George Danchev 2011-07-05 11:14:15 +00:00
parent c5caadac8b
commit 3a6de23c66
2 changed files with 16 additions and 3 deletions

View File

@ -1,11 +1,10 @@
#include <iostream>
#include <inttypes.h>
#if __WORDSIZE == 32 #if __WORDSIZE == 32
#define _LARGEFILE_SOURCE 1 #define _LARGEFILE_SOURCE 1
#define _FILE_OFFSET_BITS 64 #define _FILE_OFFSET_BITS 64
#endif #endif
#include <iostream>
#include <inttypes.h>
#include "xorriso/xorriso.h" #include "xorriso/xorriso.h"
using namespace std; using namespace std;

View File

@ -0,0 +1,14 @@
#if __WORDSIZE == 32
#define _LARGEFILE_SOURCE 1
#define _FILE_OFFSET_BITS 64
#endif
#include <inttypes.h>
#include <libburn/libburn.h>
#include <libisofs/libisofs.h>
// #include <libisoburn/libisoburn.h>
int main()
{
return 0;
}