2010-04-28 07:59:52 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* WiiMC
|
|
|
|
* usb2storage.h -- USB mass storage support, inside starlet
|
|
|
|
* Copyright (C) 2008 Kwiirk
|
|
|
|
* Improved for homebrew by rodries and Tantric
|
|
|
|
*
|
|
|
|
* IOS 202 and the ehcimodule must be loaded before using this!
|
|
|
|
***************************************************************************/
|
2010-03-11 07:02:06 +01:00
|
|
|
|
|
|
|
#ifndef __USB2STORAGE_H__
|
|
|
|
#define __USB2STORAGE_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2010-04-28 07:59:52 +02:00
|
|
|
extern "C" {
|
2010-03-11 07:02:06 +01:00
|
|
|
#endif
|
|
|
|
|
2010-04-28 07:59:52 +02:00
|
|
|
void USB2Enable(bool e);
|
2010-03-11 07:02:06 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2010-04-28 07:59:52 +02:00
|
|
|
}
|
2010-03-11 07:02:06 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|