Hi,
I have a little problem,
i want to retrieve info about iso9660 cdrom.
here is my code :
struct iso_primary_descriptor iso9660;
FILE *fd;
fd=fopen("/dev/cdrom","r");
fread(&iso9660, sizeof(struct iso_primary_descriptor),1,fd);
fclose(fd);
printf("\n-> Publisher ID : %s",iso9660.publisher_id);
but doesn't works why ?
Thanks a lot for your help.
Thierry BUCCO
- FRANCE -