Xeno-rat
|
Classes | |
struct | Asio64Bit |
ASIO 64 bit value Unfortunately the ASIO API was implemented it before compiler supported consistently 64 bit integer types. By using the structure the data layout on a little-endian system like the Intel x86 architecture will result in a "non native" storage of the 64 bit data. The most significant 32 bit are stored first in memory, the least significant bits are stored in the higher memory space. However each 32 bit is stored in the native little-endian fashion. More... | |
struct | AsioBufferInfo |
struct | AsioCallbacks |
ASIO Callbacks. More... | |
struct | AsioChannelInfo |
ASIO Channel Info. More... | |
class | AsioDriver |
Main AsioDriver Class. To use this class, you need to query first the GetAsioDriverNames() and then use the GetAsioDriverByName to instantiate the correct AsioDriver. This is the first AsioDriver binding fully implemented in C#! More... | |
class | AsioDriverCapability |
AsioDriverCapability holds all the information from the AsioDriver. Use AsioDriverExt to get the Capabilities. More... | |
class | AsioDriverExt |
AsioDriverExt is a simplified version of the AsioDriver. It provides an easier way to access the capabilities of the Driver and implement the callbacks necessary for feeding the driver. Implementation inspired from Rob Philpot's with a managed C++ ASIO wrapper BlueWave.Interop.Asio http://www.codeproject.com/KB/mcpp/Asio.Net.aspx. More... | |
class | AsioException |
ASIO common Exception. | |
class | AsioSampleConvertor |
This class stores convertors for different interleaved WaveFormat to ASIOSampleType separate channel format. | |
struct | AsioTime |
struct | AsioTimeCode |
struct | AsioTimeInfo |
Functions | |
delegate void | AsioFillBufferCallback (IntPtr[] inputChannels, IntPtr[] outputChannels) |
Callback used by the AsioDriverExt to get wave data. | |
ASIO Error Codes.
ASIO Message Selector.
ASIO Sample Type.
delegate void NAudio.Wave.Asio.AsioFillBufferCallback | ( | IntPtr[] | inputChannels, |
IntPtr[] | outputChannels ) |
Callback used by the AsioDriverExt to get wave data.