2021-02-21 05:45:24 +03:00
|
|
|
#ifndef __FS__ISO9660_H__
|
|
|
|
#define __FS__ISO9660_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <lib/part.h>
|
2022-07-04 21:16:33 +03:00
|
|
|
#include <fs/file.h>
|
2021-02-21 05:45:24 +03:00
|
|
|
|
2022-07-04 21:16:33 +03:00
|
|
|
struct file_handle *iso9660_open(struct volume *vol, const char *path);
|
2021-02-21 05:45:24 +03:00
|
|
|
|
|
|
|
#endif
|