mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
99a2f9faad
-use the devolution sample loader device mount way to read the iso (may fixes bugs in booting devolution)
38 lines
507 B
C
38 lines
507 B
C
|
|
#ifndef _TYPES_H_
|
|
#define _TYPES_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
enum
|
|
{
|
|
TYPE_WII_GAME = 0,
|
|
TYPE_GC_GAME,
|
|
TYPE_CHANNEL,
|
|
TYPE_PLUGIN,
|
|
TYPE_HOMEBREW,
|
|
TYPE_END
|
|
};
|
|
#define NoGameID(x) (x == TYPE_PLUGIN || x == TYPE_HOMEBREW)
|
|
|
|
|
|
enum
|
|
{
|
|
IOS_TYPE_D2X = 0,
|
|
IOS_TYPE_WANIN,
|
|
IOS_TYPE_HERMES,
|
|
IOS_TYPE_KWIIRK,
|
|
IOS_TYPE_NEEK2O,
|
|
IOS_TYPE_NORMAL_IOS,
|
|
IOS_TYPE_STUB,
|
|
};
|
|
#define CustomIOS(x) (x != IOS_TYPE_NORMAL_IOS && x != IOS_TYPE_STUB)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |