You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
334 B

#ifndef __HBIOS_DRIVER_STORAGE
#define __HBIOS_DRIVER_STORAGE
#include "usb_state.h"
typedef struct _hbios_storage_device {
uint8_t drive_index;
uint8_t usb_device;
} hbios_storage_device_t;
extern hbios_storage_device_t hbios_usb_storage_devices[MAX_NUMBER_OF_DEVICES];
uint8_t find_storage_dev(void);
#endif