⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 msdos_handlers_dir.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  Directory Handlers Table for MSDOS filesystem * *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia *  Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru> * *  The license and distribution terms for this file may be *  found in the file LICENSE in this distribution or at *  http://www.rtems.com/license/LICENSE. * *  @(#) $Id: msdos_handlers_dir.c,v 1.1.2.1 2003/09/04 18:47:02 joel Exp $ */#if HAVE_CONFIG_H#include "config.h"#endif#include <rtems/libio.h>#include "msdos.h"rtems_filesystem_file_handlers_r msdos_dir_handlers = {    msdos_dir_open,    msdos_dir_close,    msdos_dir_read,    NULL,             /* msdos_dir_write */    NULL,             /* msdos_dir_ioctl */    msdos_dir_lseek,    msdos_dir_stat,    NULL,    NULL,             /* msdos_dir_ftruncate */    NULL,                    msdos_dir_sync,     msdos_dir_sync,    NULL,                 /* msdos_dir_fcntl */    msdos_dir_rmnod};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -