PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
fs_driver.h
1#ifndef FS_DRIVER_H
2#define FS_DRIVER_H
3
4#include <bdm.h>
5#include "ff.h"
6
8{
9 FATFS fatfs;
10 struct block_device *mounted_bd;
11 int mount_status;
13
14extern fatfs_fs_driver_mount_info fs_driver_mount_info[FF_VOLUMES];
15
16extern int InitFS(void);
17extern int connect_bd(struct block_device *bd);
18extern void disconnect_bd(struct block_device *bd);
19extern struct block_device *fatfs_fs_driver_get_mounted_bd_from_index(int mount_info_index);
20
21#endif