summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r--winsup/cygwin/fhandler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index bdc73bfbf..ac1e4e9a9 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -551,6 +551,9 @@ public:
class fhandler_dev_raw: public fhandler_base
{
protected:
+ _off64_t drive_size;
+ _off64_t current_position;
+ unsigned long bytes_per_sector;
char *devbuf;
size_t devbufsiz;
size_t devbufstart;
@@ -600,6 +603,9 @@ class fhandler_dev_raw: public fhandler_base
class fhandler_dev_floppy: public fhandler_dev_raw
{
+ private:
+ int fhandler_dev_floppy::get_drive_info (struct hd_geometry *geo);
+
protected:
virtual int is_eom (int win_error);
virtual int is_eof (int win_error);