Warning: this an unofficial Derelict binding.
A dynamic binding to PortAudio for the D Programming Language.
Please see the sections on Compiling and Linking and The Derelict Loader, in the Derelict documentation, for information on how to build DerelictPA and load PortAudio at run time. In the meantime, here's some sample code.
import derelict.portaudio;
void main() {
// Load the PortAudio library.
DerelictPA.load();
// Now PortAudio functions can be called.
...
}
Also thanks to Ianis G. Vasilev for the static binds.