mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-10-05 05:42:18 +00:00
[vfs #1] Add ttvfs, miniz, and minihttp sources
This commit is contained in:
parent
99e3f5ebe2
commit
a90f57afb0
36 changed files with 10047 additions and 0 deletions
20
ExternalLibs/ttvfs/VFSSystemPaths.h
Normal file
20
ExternalLibs/ttvfs/VFSSystemPaths.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue