mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
18 lines
270 B
C++
18 lines
270 B
C++
// Dreameye Mic
|
|
#pragma once
|
|
|
|
namespace EmulatedDevices
|
|
{
|
|
|
|
class DreameyeMic : public FT4
|
|
{
|
|
public:
|
|
DreameyeMic(maple_subdevice_instance* instance);
|
|
|
|
u32 DMA(u32 Command,
|
|
u32* buffer_in, u32 buffer_in_len,
|
|
u32* buffer_out, u32& buffer_out_len);
|
|
};
|
|
|
|
} //namespace
|
|
|