2017-10-16 11:55:29 +02:00
|
|
|
#ifndef _GLOBALS_H_
|
|
|
|
#define _GLOBALS_H_
|
|
|
|
|
|
|
|
// Constants
|
|
|
|
#define CIOS_VERSION 249
|
2023-02-19 20:47:31 +01:00
|
|
|
#define ENTRIES_PER_PAGE 12
|
2017-10-16 11:55:29 +02:00
|
|
|
#define MAX_FILE_PATH_LEN 1024
|
|
|
|
#define MAX_DIR_LEVELS 10
|
|
|
|
#define WAD_DIRECTORY "/"
|
|
|
|
#define WAD_ROOT_DIRECTORY "/wad"
|
|
|
|
|
|
|
|
#define MAX_PASSWORD_LENGTH 10
|
|
|
|
#define MAX_FAT_DEVICE_LENGTH 10
|
|
|
|
#define MAX_NAND_DEVICE_LENGTH 10
|
|
|
|
|
|
|
|
#define WM_CONFIG_FILE_PATH ":/wad/wm_config.txt"
|
|
|
|
#define WM_BACKGROUND_PATH ":/wad/background.png"
|
|
|
|
|
|
|
|
#define FAT_DEVICE_INDEX_INVALID -1
|
|
|
|
#define NAND_DEVICE_INDEX_INVALID -1
|
|
|
|
#define CIOS_VERSION_INVALID -1
|
|
|
|
|
|
|
|
// For the WiiLight
|
|
|
|
#define WII_LIGHT_OFF 0
|
|
|
|
#define WII_LIGHT_ON 1
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char password[MAX_PASSWORD_LENGTH];
|
|
|
|
char startupPath [256];
|
|
|
|
int cIOSVersion;
|
|
|
|
int fatDeviceIndex;
|
|
|
|
int nandDeviceIndex;
|
|
|
|
const char *smbuser;
|
|
|
|
const char *smbpassword;
|
|
|
|
const char *share;
|
|
|
|
const char *ip;
|
|
|
|
} CONFIG;
|
|
|
|
|
|
|
|
|
|
|
|
extern CONFIG gConfig;
|
|
|
|
extern nandDevice ndevList[];
|
2023-02-19 20:47:31 +01:00
|
|
|
//extern fatDevice fdevList[];
|
2017-10-16 11:55:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|