wok-next diff syslinux/stuff/iso2exe/iso9660.h @ rev 16012

syslinux/iso2exe: access both local and isofs namespaces
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 04 21:00:29 2014 +0000 (2014-03-04)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/syslinux/stuff/iso2exe/iso9660.h	Tue Mar 04 21:00:29 2014 +0000
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef __ISO9660_H
     1.5 +#define __ISO9660_H
     1.6 +extern char *isofilename;
     1.7 +extern unsigned long isofileofs, isofilesize;
     1.8 +extern unsigned short isofilemod;
     1.9 +extern int isofd;
    1.10 +extern int isoreset(char *name);
    1.11 +extern int isoopen(char *name);
    1.12 +extern int isoreaddir(int restart);
    1.13 +extern int isoread(char *data, unsigned size);
    1.14 +#define isolabel() do { isofileofs=0x8028; isofilesize=32; } while (0)
    1.15 +#endif