fs.h
来自「AMLOGIC DPF source code」· C头文件 代码 · 共 70 行
H
70 行
/*******************************************************************
*
* Copyright C 2005 by Amlogic, Inc. All Rights Reserved.
*
* Description:
*
* Author: Amlogic Software
* Created: Fri Nov 11 01:04:47 2005
*
*******************************************************************/
/*
* Some basic filesystem types
*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.avfs.com/license/LICENSE.
*
* fs.h,v 1.1.2.1 2003/09/04 18:55:05 joel Exp
*/
#ifndef __avfs_fstypes_h
#define __avfs_fstypes_h
#ifdef __cplusplus
extern "C" {
#endif
/*
* File descriptor Table Information
*/
/* Forward declarations */
/* FIXME: shouldn't this better not be here? */
typedef struct avfs_libio_tt avfs_libio_t;
typedef struct avfs_filesystem_location_info_tt
avfs_filesystem_location_info_t;
struct avfs_filesystem_mount_table_entry_tt;
typedef struct avfs_filesystem_mount_table_entry_tt
avfs_filesystem_mount_table_entry_t;
typedef struct _avfs_filesystem_file_handlers_r
avfs_filesystem_file_handlers_r;
typedef struct _avfs_filesystem_operations_table
avfs_filesystem_operations_table;
/*
* Structure used to determine a location/filesystem in the tree.
*/
struct avfs_filesystem_location_info_tt
{
void *node_access;
avfs_filesystem_file_handlers_r *handlers;
avfs_filesystem_operations_table *ops;
avfs_filesystem_mount_table_entry_t *mt_entry;
};
#ifdef __cplusplus
}
#endif
#endif
/* end of include file */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?