home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / hdreg.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  501b  |  25 lines

  1. /* cygwin/hdreg.h
  2.  
  3.    Copyright 2002 Red Hat Inc.
  4.    Written by Chris January <chris@atomice.net>
  5.  
  6. This file is part of Cygwin.
  7.  
  8. This software is a copyrighted work licensed under the terms of the
  9. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  10. details. */
  11.  
  12. #ifndef _CYGWIN_HDREG_H_
  13. #define _CYGWIN_HDREG_H_
  14.  
  15. struct hd_geometry {
  16.   unsigned char heads;
  17.   unsigned char sectors;
  18.   unsigned short cylinders;
  19.   unsigned long start;
  20. };
  21.  
  22. #define HDIO_GETGEO                     0x301
  23.  
  24. #endif
  25.