mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
File size querying
This commit is contained in:
parent
f33e65b56d
commit
7f3ab3878f
5 changed files with 18 additions and 0 deletions
|
@ -2412,6 +2412,11 @@ BFP_EXPORT BfpFileAttributes BFP_CALLTYPE BfpFindFileData_GetFileAttributes(BfpF
|
|||
return flags;
|
||||
}
|
||||
|
||||
BFP_EXPORT int64 BFP_CALLTYPE BfpFindFileData_GetFileSize(BfpFindFileData* findData)
|
||||
{
|
||||
return (int64)findData->mStat.st_size;
|
||||
}
|
||||
|
||||
BFP_EXPORT void BFP_CALLTYPE BfpFindFileData_Release(BfpFindFileData* findData)
|
||||
{
|
||||
delete findData;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue