source: rtems/cpukit/libfs/src/dosfs/msdos_handlers_dir.c @ cfe8f7a

5
Last change on this file since cfe8f7a was cfe8f7a, checked in by Sebastian Huber <sebastian.huber@…>, on 04/27/20 at 14:14:06

doxygen: Switch @brief and @ingroup

This order change fixes the Latex documentation build via Doxygen.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup libfs
5 *
6 * @brief Directory Handlers Table for MSDOS FileSystem
7 */
8
9/*
10 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
11 *  Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifdef HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/libio.h>
23#include "msdos.h"
24
25const rtems_filesystem_file_handlers_r msdos_dir_handlers = {
26  .open_h = rtems_filesystem_default_open,
27  .close_h = rtems_filesystem_default_close,
28  .read_h = msdos_dir_read,
29  .write_h = rtems_filesystem_default_write,
30  .ioctl_h = rtems_filesystem_default_ioctl,
31  .lseek_h = rtems_filesystem_default_lseek_directory,
32  .fstat_h = msdos_dir_stat,
33  .ftruncate_h = rtems_filesystem_default_ftruncate_directory,
34  .fsync_h = msdos_sync,
35  .fdatasync_h = msdos_sync,
36  .fcntl_h = rtems_filesystem_default_fcntl,
37  .kqfilter_h = rtems_filesystem_default_kqfilter,
38  .mmap_h = rtems_filesystem_default_mmap,
39  .poll_h = rtems_filesystem_default_poll,
40  .readv_h = rtems_filesystem_default_readv,
41  .writev_h = rtems_filesystem_default_writev
42};
Note: See TracBrowser for help on using the repository browser.