mirror of
https://review.haiku-os.org/haiku
synced 2025-01-23 23:04:48 +01:00
83812f6752
where it will be ported to Haiku. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20216 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
368 B
C++
18 lines
368 B
C++
// AreaSupport.h
|
|
|
|
#ifndef USERLAND_FS_AREA_SUPPORT_H
|
|
#define USERLAND_FS_AREA_SUPPORT_H
|
|
|
|
#include <OS.h>
|
|
|
|
namespace UserlandFSUtil {
|
|
|
|
status_t get_area_for_address(void* address, int32 size, area_id* area,
|
|
int32* offset, void** areaBaseAddress = NULL);
|
|
|
|
} // namespace UserlandFSUtil
|
|
|
|
using UserlandFSUtil::get_area_for_address;
|
|
|
|
#endif // USERLAND_FS_AREA_SUPPORT_H
|