derelict-ogg

A dynamic binding to libogg.


Keywords
library, binding, audio
License
BSL-1.0
Install
dub fetch derelict-ogg --version 2.0.0-beta.1

Documentation

DerelictOgg

A dynamic binding to libogg version 1.3 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 DerelictOgg and load libogg at run time. In the meantime, here's some sample code.

import derelict.ogg.ogg;

void main() {
    // Load the libogg library.
    DerelictOgg.load();

    // Now libogg functions can be called.
    ...
}