summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/cygwin/hdreg.h
blob: 7167f4fc94f2b970d12603f0f66d46b9ef3fdf87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* cygwin/hdreg.h
   Written by Chris January <chris@atomice.net>

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

#ifndef _CYGWIN_HDREG_H_
#define _CYGWIN_HDREG_H_

struct hd_geometry {
  unsigned char heads;
  unsigned char sectors;
  unsigned short cylinders;
  unsigned long start;
};

#define HDIO_GETGEO                     0x301

#endif