mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 22:19:07 +00:00
21 lines
411 B
C
21 lines
411 B
C
|
#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
|