mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-08 01:31:22 +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;
|
||
|
}
|