libisoburn/releng/codesamples/api_3lib.cpp

35 lines
767 B
C++
Raw Normal View History

// Just to ensure we are C++-clean. This should not spit too much noise
2011-07-11 09:44:01 +00:00
/* Copyright 2011 George Danchev <danchev@spnet.net>
2012-04-22 10:05:42 +00:00
* Released into the public domain
2011-07-11 09:44:01 +00:00
*/
2011-07-05 11:14:15 +00:00
#if __WORDSIZE == 32
#define _LARGEFILE_SOURCE 1
#define _FILE_OFFSET_BITS 64
#endif
#include <iostream>
2011-07-05 11:14:15 +00:00
#include <inttypes.h>
2012-04-22 10:05:42 +00:00
//extern "C" {
#include "libburn/libburn.h"
#include "libisofs/libisofs.h"
// using namespace burn;
// (this was needed to before rev.4062 of libisoburn)
#include "libisoburn/libisoburn.h"
2012-04-22 10:05:42 +00:00
//}
int main() {
int major=-1, minor=-1, micro=-1;
isoburn_version(&major, &minor, &micro);
if (major<0 || minor<0 || micro<0)
return -1;
std::cout
<< " major:" << major
<< " minor:" << minor
<< " micro:" << micro
;
2011-07-05 11:14:15 +00:00
return 0;
}