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

4.104.114.95
Last change on this file since 7c007cf was bf95ccb5, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 05/27/08 at 10:34:15

Added const qualifier to various pointers and data tables to

reduce size of data area.
IMFS: Fixed creation of symbolic links to avoid a compiler warning.
DOSFS: Use LibBlock? instead of read() to read the boot record.

  • Property mode set to 100644
File size: 872 bytes
Line 
1/*
2 *  Directory Handlers Table for MSDOS filesystem
3 *
4 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
5 *  Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  @(#) $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems/libio.h>
19#include "msdos.h"
20
21const rtems_filesystem_file_handlers_r msdos_dir_handlers = {
22    msdos_dir_open,
23    msdos_dir_close,
24    msdos_dir_read,
25    NULL,             /* msdos_dir_write */
26    NULL,             /* msdos_dir_ioctl */
27    msdos_dir_lseek,
28    msdos_dir_stat,
29    NULL,
30    NULL,             /* msdos_dir_ftruncate */
31    NULL,
32    msdos_dir_sync,
33    msdos_dir_sync,
34    NULL,                 /* msdos_dir_fcntl */
35    msdos_dir_rmnod
36};
Note: See TracBrowser for help on using the repository browser.