30 lines
415 B
C
Raw Normal View History

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
#include "net.h"
#include "version.h"
2022-02-04 14:33:59 +01:00
#include <stdint.h>
2019-11-24 14:20:08 +01: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"
#define VERSION_FULL VERSION VERSION_EXTRA
#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