mirror of
https://github.com/wiiu-env/homebrew_launcher.git
synced 2024-11-17 02:09:18 +01:00
19 lines
207 B
C
19 lines
207 B
C
|
#ifndef _MAIN_H_
|
||
|
#define _MAIN_H_
|
||
|
|
||
|
#include "common/types.h"
|
||
|
|
||
|
/* Main */
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
//! C wrapper for our C++ functions
|
||
|
int Menu_Main(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|