2002-07-09 16:24:59 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
|
|
// by the OpenBeOS license.
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
/*!
|
|
|
|
\file StorageDefs.Private.h
|
|
|
|
Private Storage Kit declarations needed in public headers.
|
|
|
|
*/
|
|
|
|
|
2002-08-12 11:24:02 +04:00
|
|
|
#ifndef _DEF_STORAGE_PRIVATE_H
|
|
|
|
#define _DEF_STORAGE_PRIVATE_H
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2002-08-12 12:42:01 +04:00
|
|
|
namespace BPrivate {
|
|
|
|
namespace Storage {
|
|
|
|
typedef int FileDescriptor;
|
|
|
|
};
|
2002-07-09 16:24:59 +04:00
|
|
|
};
|
|
|
|
|
2002-08-12 11:24:02 +04:00
|
|
|
#endif // _DEF_STORAGE_PRIVATE_H
|
2002-08-12 12:42:01 +04:00
|
|
|
|
|
|
|
|