Skip to content

Dynamic bindings to PortAudio for the D Programming Language

License

Notifications You must be signed in to change notification settings

aurorafossorg/DerelictPA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DerelictPA

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.