File: xdf_io.h

package info (click to toggle)
mtools 3.8-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,116 kB
  • ctags: 1,306
  • sloc: ansic: 11,489; sh: 2,052; makefile: 223; sed: 8
file content (16 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MTOOLS_XDFIO_H
#define MTOOLS_XDFIO_H

#include "msdos.h"
#include "stream.h"

struct xdf_info {
  int FatSize;
  int RootDirSize;
  int BadSectors;
};

Stream_t *XdfOpen(struct device *dev, char *name,
		  int mode, char *errmsg, struct xdf_info *info);

#endif