#include "SDL_internal.h"
#if defined(SDL_FSOPS_DUMMY)
#include "../SDL_sysfilesystem.h"
bool SDL_SYS_EnumerateDirectory(const char *path, SDL_EnumerateDirectoryCallback cb, void *userdata)
{
return SDL_Unsupported();
}
bool SDL_SYS_RemovePath(const char *path)
{
return SDL_Unsupported();
}
bool SDL_SYS_RenamePath(const char *oldpath, const char *newpath)
{
return SDL_Unsupported();
}
bool SDL_SYS_CopyFile(const char *oldpath, const char *newpath)
{
return SDL_Unsupported();
}
bool SDL_SYS_CreateDirectory(const char *path)
{
return SDL_Unsupported();
}
bool SDL_SYS_GetPathInfo(const char *path, SDL_PathInfo *info)
{
return SDL_Unsupported();
}
#endif