24 lines
280 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"
2022-02-04 14:33:59 +01:00
#include <stdint.h>
2019-11-24 14:20:08 +01:00
2022-02-04 14:33:59 +01:00
#define MAXPATHLEN 256
2019-11-24 14:20:08 +01:00
2022-02-04 14:33:59 +01:00
#define wiiu_geterrno() (errno)
2019-11-24 14:20:08 +01:00
//! C wrapper for our C++ functions
int Menu_Main(void);
#ifdef __cplusplus
}
#endif
#endif