mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
24 lines
552 B
C
24 lines
552 B
C
/****************************************************************************
|
|
* 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!
|
|
***************************************************************************/
|
|
|
|
#ifndef __USB2STORAGE_H__
|
|
#define __USB2STORAGE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void USB2Enable(bool e);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|