mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:13:18 +00:00
[FSUTIL] Mark some functions as static (only used in this file)
This commit is contained in:
parent
ff045b2dbe
commit
8649ed90a8
1 changed files with 2 additions and 2 deletions
|
@ -339,7 +339,7 @@ DumpNtfs(PVOID Statistics, PVOID Specific)
|
||||||
#define GET_NEXT(stats, length, iter, type) (type)((ULONG_PTR)stats + (length * iter))
|
#define GET_NEXT(stats, length, iter, type) (type)((ULONG_PTR)stats + (length * iter))
|
||||||
#define SUM_VALUE(stats, new, value) stats->value += new->value
|
#define SUM_VALUE(stats, new, value) stats->value += new->value
|
||||||
|
|
||||||
inline int
|
static inline int
|
||||||
ValidateSizes(ULONG Length, DWORD ProcCount, DWORD BytesRead, DWORD SpecificSize)
|
ValidateSizes(ULONG Length, DWORD ProcCount, DWORD BytesRead, DWORD SpecificSize)
|
||||||
{
|
{
|
||||||
/* Check whether we could read our base length for every processor */
|
/* Check whether we could read our base length for every processor */
|
||||||
|
@ -359,7 +359,7 @@ ValidateSizes(ULONG Length, DWORD ProcCount, DWORD BytesRead, DWORD SpecificSize
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void
|
static inline void
|
||||||
SumBase(PFILESYSTEM_STATISTICS Base, PFILESYSTEM_STATISTICS NextBase)
|
SumBase(PFILESYSTEM_STATISTICS Base, PFILESYSTEM_STATISTICS NextBase)
|
||||||
{
|
{
|
||||||
/* Sum any entry in the generic structures */
|
/* Sum any entry in the generic structures */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue