项目作者: aurorafossorg

项目描述 :
Dynamic bindings to PortAudio for the D Programming Language
高级语言: D
项目地址: git://github.com/aurorafossorg/DerelictPA.git
创建时间: 2018-06-27T20:46:58Z
项目社区:https://github.com/aurorafossorg/DerelictPA

开源协议:Boost Software License 1.0

下载


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.

  1. import derelict.portaudio;
  2. void main() {
  3. // Load the PortAudio library.
  4. DerelictPA.load();
  5. // Now PortAudio functions can be called.
  6. ...
  7. }

Also thanks to Ianis G. Vasilev for the static binds.