1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-15 22:19:07 +00:00
Aquaria/ExternalLibs/ttvfs/VFSSystemPaths.h

21 lines
411 B
C
Raw Normal View History

#ifndef VFS_SYSTEM_PATHS_H
#define VFS_SYSTEM_PATHS_H
#include <cstddef>
#include <string>
#include "VFSDefines.h"
VFS_NAMESPACE_START
// Returns the current user's home directory, without terminating '/'
std::string GetUserDir();
// Returns a per-user directory suitable to store application specific data,
// without terminating '/'
std::string GetAppDir(const char *appname);
VFS_NAMESPACE_END
#endif