dvd_udf.h | dvd_udf.h | |||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
/** | /** | |||
* Looks for a file on the UDF disc/imagefile and returns the block number | * Looks for a file on the UDF disc/imagefile and returns the block number | |||
* where it begins, or 0 if it is not found. The filename should be an | * where it begins, or 0 if it is not found. The filename should be an | |||
* absolute pathname on the UDF filesystem, starting with '/'. For example , | * absolute pathname on the UDF filesystem, starting with '/'. For example , | |||
* '/VIDEO_TS/VTS_01_1.IFO'. On success, filesize will be set to the size of | * '/VIDEO_TS/VTS_01_1.IFO'. On success, filesize will be set to the size of | |||
* the file in bytes. | * the file in bytes. | |||
*/ | */ | |||
uint32_t UDFFindFile( dvd_reader_t *device, char *filename, uint32_t *size ); | uint32_t UDFFindFile( dvd_reader_t *device, char *filename, uint32_t *size ); | |||
void FreeUDFCache(void *cache); | ||||
int UDFGetVolumeIdentifier(dvd_reader_t *device, | int UDFGetVolumeIdentifier(dvd_reader_t *device, | |||
char *volid, unsigned int volid_size); | char *volid, unsigned int volid_size); | |||
int UDFGetVolumeSetIdentifier(dvd_reader_t *device, | int UDFGetVolumeSetIdentifier(dvd_reader_t *device, | |||
uint8_t *volsetid, unsigned int volsetid_size ); | uint8_t *volsetid, unsigned int volsetid_size ); | |||
void *GetUDFCacheHandle(dvd_reader_t *device); | ||||
void SetUDFCacheHandle(dvd_reader_t *device, void *cache); | ||||
#ifdef __cplusplus | #ifdef __cplusplus | |||
}; | }; | |||
#endif | #endif | |||
#endif /* LIBDVDREAD_DVD_UDF_H */ | #endif /* LIBDVDREAD_DVD_UDF_H */ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 0 lines changed or added | |||