2019-11-24 14:20:08 +01:00
|
|
|
#ifndef _MAIN_H_
|
|
|
|
#define _MAIN_H_
|
|
|
|
|
|
|
|
/* Main */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2021-09-24 19:49:11 +02:00
|
|
|
|
2021-04-17 14:20:41 +02:00
|
|
|
#include "net.h"
|
2022-09-19 13:32:05 +02:00
|
|
|
#include "version.h"
|
2022-02-04 14:33:59 +01:00
|
|
|
#include <stdint.h>
|
2019-11-24 14:20:08 +01:00
|
|
|
|
2022-09-19 14:06:02 +02:00
|
|
|
#define MAXPATHLEN 256
|
2019-11-24 14:20:08 +01:00
|
|
|
|
2023-07-19 19:30:32 +02:00
|
|
|
#define VERSION "v0.3.l"
|
2022-09-19 14:06:02 +02:00
|
|
|
#define VERSION_FULL VERSION VERSION_EXTRA
|
2022-09-19 13:32:05 +02:00
|
|
|
|
2022-09-19 14:06:02 +02:00
|
|
|
#define wiiu_geterrno() (errno)
|
|
|
|
|
|
|
|
extern bool gSystemFilesAllowed;
|
2019-11-24 14:20:08 +01:00
|
|
|
|
|
|
|
//! C wrapper for our C++ functions
|
|
|
|
int Menu_Main(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|