WiiUPluginLoader/src/myutils/libfat.h
2018-09-22 19:52:52 +02:00

18 lines
218 B
C

#ifndef __LIBFAT_MOUNT_H_
#define __LIBFAT_MOUNT_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
int32_t mount_libfatAll();
void unmount_libfat(const char * path);
#ifdef __cplusplus
}
#endif
#endif