Unified the look of the different files a bit (their headers in particular).

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2596 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-01-29 14:45:15 +00:00
parent 8b9ceff84b
commit f60043082d
5 changed files with 13 additions and 20 deletions

View File

@ -1,8 +1,7 @@
/* OS.h - kernel specific structures and functions
/* Kernel specific structures and functions
**
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef _OS_H
#define _OS_H

View File

@ -1,12 +1,11 @@
/* fs_attr.h
/* File System attributes
**
** functions/definitions for retrieving and setting attribute information.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef _FS_ATTR_H
#define _FS_ATTR_H
#include <OS.h>
#include <dirent.h>

View File

@ -1,18 +1,16 @@
//----------------------------------------------------------------------
// This software is part of the OpenBeOS distribution and is covered
// by the OpenBeOS license.
//---------------------------------------------------------------------
/*!
\file fs_devices.h
/* Disk device iteration and information
**
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef _FS_DEVICE_H
#define _FS_DEVICE_H
#include <Drivers.h>
#include <OS.h>
#include <SupportDefs.h>
// session flags
enum {
B_DATA_SESSION = 0x01, /* data session */
@ -49,6 +47,7 @@ typedef struct extended_partition_info {
uint32 file_system_flags; /* same as fs_info::flags */
} extended_partition_info;
#ifdef __cplusplus
extern "C" {
#endif
@ -78,9 +77,8 @@ status_t get_fs_initialization_parameters(int deviceFD, int32 sessionIndex,
status_t initialize_volume(const char *where, const char *fileSystem,
const char *volumeName, const char *parameters);
#ifdef __cplusplus
}
#endif
#endif _FS_DEVICE_H
#endif /* _FS_DEVICE_H */

View File

@ -1,12 +1,11 @@
/* fs_index.h
/* File System indices
**
** functions/definitions for file system indices.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef _FS_INDEX_H
#define _FS_INDEX_H
#include <OS.h>
#include <dirent.h>

View File

@ -1,9 +1,7 @@
/* fs_info.h
/* General File System informations/capabilities
**
** functions/definitions for general file system information.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef _FS_INFO_H
#define _FS_INFO_H