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