Add the initial C++ header file for the interpreter with the start of Value

This commit is contained in:
Simon Hausmann 2021-03-17 12:10:12 +01:00
parent 6c6efbdab0
commit cf2b02c9fa
4 changed files with 92 additions and 0 deletions

View file

@ -12,6 +12,8 @@ LICENSE END */
#[doc(hidden)]
#[cold]
pub extern "C" fn use_modules() -> usize {
#[cfg(feature = "sixtyfps-interpreter")]
sixtyfps_interpreter::use_modules();
sixtyfps_rendering_backend_default::use_modules();
sixtyfps_corelib::use_modules()
}