mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-09 02:01:07 +01:00
* Initial GHLtar emulation * Add GHLtar to CMakeLists and VS project, zero the buffer and remove unused header values * Fix coding style issues and include headers * Remove redundant if, improve code formatting * Remove needless includes Co-authored-by: Ivan <Nekotekina@users.noreply.github.com>
14 lines
403 B
C++
14 lines
403 B
C++
#pragma once
|
|
|
|
#include "Emu/Io/usb_device.h"
|
|
|
|
class usb_device_ghltar : public usb_device_emulated
|
|
{
|
|
public:
|
|
usb_device_ghltar();
|
|
~usb_device_ghltar();
|
|
|
|
void control_transfer(u8 bmRequestType, u8 bRequest, u16 wValue, u16 wIndex, u16 wLength, u32 buf_size, u8* buf, UsbTransfer* transfer) override;
|
|
void interrupt_transfer(u32 buf_size, u8* buf, u32 endpoint, UsbTransfer* transfer) override;
|
|
};
|