mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-19 01:15:32 -04:00
29 lines
410 B
C
29 lines
410 B
C
// clang-format off
|
|
|
|
#ifndef _LIBFAT_EXT_H
|
|
#define _LIBFAT_EXT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <nds/disc_io.h>
|
|
|
|
/*
|
|
Get Alias Name
|
|
*/
|
|
extern void fatGetAliasName (const char* drive, const char* name, char *alias);
|
|
|
|
/*
|
|
Get Alias Path
|
|
*/
|
|
extern void fatGetAliasPath (const char* drive, const char* path, char *alias);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _LIBFAT_EXT_H
|