mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 13:58:21 +01:00
3e61704042
Added parameters --start-offset and --end-offset to restrict the access of the file system to only that part of the given file. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23970 a95241bf-73f2-0310-859d-f6bbb57e9c96
21 lines
466 B
C++
21 lines
466 B
C++
/*
|
|
* Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _FSSH_STAT_PRIV_H
|
|
#define _FSSH_STAT_PRIV_H
|
|
|
|
#include "fssh_defs.h"
|
|
|
|
|
|
namespace FSShell {
|
|
|
|
int unrestricted_stat(const char *path, struct fssh_stat *fsshStat);
|
|
int unrestricted_fstat(int fd, struct fssh_stat *fsshStat);
|
|
int unrestricted_lstat(const char *path, struct fssh_stat *fsshStat);
|
|
|
|
} // namespace FSShell
|
|
|
|
|
|
#endif // _FSSH_STAT_PRIV_H
|