e00a5d0761
- Moved main option from the portX parameter to the optionsX parameter. Added new option "path" for the disk, cdrom and floppy devices, "ports" for the USB hub and "file" for the USB printer. The legacy syntax is still supported. - Register USB device state after init() to ensure all options that may have effect on the save/restore list are applied. - Report available devices on top of log file similar to hdimage, network and sound modules. - Changed USB device type variable typein host controllers to int. - Prepared improved usbdev_ctl init / exit implementation. - TODO: Create list of USB devices dynamicly from available plugins.
54 lines
1.9 KiB
C++
54 lines
1.9 KiB
C++
/////////////////////////////////////////////////////////////////////////
|
|
// $Id$
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2009-2016 Benjamin D Lunt (fys [at] fysnet [dot] net)
|
|
// 2009-2021 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(usbdev_type type);
|
|
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, int set,
|
|
const char *oldval, const char *val, int maxlen);
|
|
};
|
|
|
|
#endif
|