view netinstall/nio-file.h @ 1526:8b284a83dd90

[xemacs-hg @ 2003-06-13 00:11:16 by adrian] xemacs-21.5: Fix xemacs.exe is in a strange place? on 'windows-nt -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2003-06-13 Adrian Aichner <adrian@xemacs.org> * setup-paths.el (paths-emacs-root-p): Don't insist in lib-src directory on 'windows-nt, which currently does not have it.
author adrian
date Fri, 13 Jun 2003 00:11:16 +0000
parents 3078fd1074e8
children
line wrap: on
line source

/*
 * Copyright (c) 2000, Red Hat, Inc.
 *
 *     This program is free software; you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation; either version 2 of the License, or
 *     (at your option) any later version.
 *
 *     A copy of the GNU General Public License can be found at
 *     http://www.gnu.org/
 *
 * Written by DJ Delorie <dj@cygnus.com>
 *
 */

/* see nio-file.cc */

class NetIO_File : public NetIO {
public:
  NetIO_File (char *url);
  void *fd;
  ~NetIO_File ();
  virtual int ok ();
  virtual int read (char *buf, int nbytes);
};