mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
8a5be21140
See #19522
10 lines
257 B
C++
10 lines
257 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "Common/File/Path.h"
|
|
|
|
// If this fails, false is returned and space is negative.
|
|
// Try to avoid calling this from the main thread, if possible. Can be SLOW.
|
|
bool free_disk_space(const Path &path, int64_t &space);
|