File: device.h

package info (click to toggle)
cpmtools 2.13-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 988 kB
  • sloc: ansic: 5,322; sh: 3,097; makefile: 141
file content (35 lines) | stat: -rw-r--r-- 966 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef DEVICE_H
#define DEVICE_H

#ifdef _WIN32
/* The type of device the file system is on: */
#define CPMDRV_FILE  0 /* Regular file or Unix block device */
#define CPMDRV_WIN95 1 /* Windows 95 floppy drive accessed via VWIN32 */
#define CPMDRV_WINNT 2 /* Windows NT floppy drive accessed via CreateFile */
#endif

struct Device
{
  int opened;

  int secLength;
  int tracks;
  int sectrk;
#if HAVE_LIBDSK_H
  DSK_PDRIVER   dev;
  DSK_GEOMETRY geom; 
#endif
#if HAVE_WINDOWS_H
  int drvtype;
  HANDLE hdisk;
#endif
  int fd;
};

const char *Device_open(struct Device *self, const char *filename, int mode, const char *deviceOpts);
void Device_setGeometry(struct Device *self, int secLength, int sectrk, int tracks);
const char *Device_close(struct Device *self);
const char *Device_readSector(const struct Device *self, int track, int sector, char *buf);
const char *Device_writeSector(const struct Device *self, int track, int sector, const char *buf);

#endif