#include <ladspa.h>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include "Network.hxx"
#include "PushFlowControl.hxx"
#include "XMLStorage.hxx"
#include "AudioSource.hxx"
#include "AudioSink.hxx"
#include "ControlSource.hxx"
#include "ControlSink.hxx"
#include "LadspaLibrary.hxx"
Go to the source code of this file.
Namespaces | |
namespace | CLAM |
Classes | |
class | CLAM::LadspaNetworkExporter |
Defines | |
#define | CLAM_EXTERNAL_FILE_DATA(varname, file) |
Include a given file as binary data. |
#define CLAM_EXTERNAL_FILE_DATA | ( | varname, | |||
file | ) |
Value:
asm ( \ " .section \".rodata\"\n" \ " .type " #varname ", @object\n" \ " " #varname ":\n" \ " .incbin \"" file "\"\n" \ " .byte 0\n" \ " .size " #varname ", .-" #varname "\n" \ ); \ extern const char varname[]; \
Definition at line 22 of file LadspaNetworkExporter.hxx.