Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 642 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 642 Bytes

DerelictCEF

A dynamic binding to the Chromium Embedded Framework for the D Programming Language.

Please see the pages Building and Linking Derelict and Using Derelict, in the Derelict documentation, for information on how to build DerelictCEF and load libcef at run time. In the meantime, here's some sample code.

import derelict.cef.cef;

void main() {
    // Load the CEF library.
    DerelictCEF.load();

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