* fix for theme font handling (when switching back to the default theme, the language...
[open-ps2-loader.git] / include / usbsupport.h
blobfd8269bcf5d874acc3c8d640a95494dd95850deb
1 #ifndef __USB_SUPPORT_H
2 #define __USB_SUPPORT_H
4 #include "include/iosupport.h"
6 #ifdef VMC
7 #include "include/mcemu.h"
8 typedef struct
10 int active; /* Activation flag */
11 u32 start_sector; /* Start sector of vmc file */
12 int flags; /* Card flag */
13 vmc_spec_t specs; /* Card specifications */
14 } usb_vmc_infos_t;
15 #endif
17 void usbInit();
18 item_list_t* usbGetObject(int initOnly);
19 int usbFindPartition(char *target, char *name);
20 void usbLoadModules(void);
22 #endif