mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
15 lines
206 B
C
15 lines
206 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include "libiso9660.h"
|
|
|
|
iso9660_read_t __iso9660_device_read;
|
|
|
|
void iso9660_init(iso9660_read_t func)
|
|
{
|
|
__iso9660_device_read = func;
|
|
}
|