Bochs/bochs/iodev/usb/usb_printer.h
Benjamin David Lunt a996807435
Enhanced the USB emulation
The enhancements include fixes and error checks targeting hobbyists who are writing USB drivers.
2023-02-16 17:24:13 -07:00

54 lines
1.9 KiB
C++

/////////////////////////////////////////////////////////////////////////
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009-2023 Benjamin D Lunt (fys [at] fysnet [dot] net)
// 2009-2023 The Bochs Project
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
/////////////////////////////////////////////////////////////////////////
#ifndef BX_IODEV_USB_PRINTER_H
#define BX_IODEV_USB_PRINTER_H
class usb_printer_device_c : public usb_device_c {
public:
usb_printer_device_c(void);
virtual ~usb_printer_device_c(void);
virtual bool init();
virtual bool set_option(const char *option);
virtual const char* get_info();
virtual void handle_reset();
virtual int handle_control(int request, int value, int index, int length, Bit8u *data);
virtual int handle_data(USBPacket *p);
virtual void register_state_specific(bx_list_c *parent);
private:
struct {
Bit8u printer_status;
char fname[BX_PATHNAME_LEN];
bx_list_c *config;
FILE *fp;
char info_txt[BX_PATHNAME_LEN + 20];
} s;
static const char* printfile_handler(bx_param_string_c *param, bool set,
const char *oldval, const char *val, int maxlen);
};
#endif