Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 621 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 621 Bytes

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.
    ...
}