mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-13 22:35:13 +01:00
19 lines
220 B
C
19 lines
220 B
C
|
#ifndef _MAIN_H_
|
||
|
#define _MAIN_H_
|
||
|
|
||
|
#include <dynamic_libs/os_functions.h>
|
||
|
#include <dynamic_libs/os_types.h>
|
||
|
|
||
|
/* Main */
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void deInit_SD_USB();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|