mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 13:31:36 +03:00
12 lines
271 B
Ruby
12 lines
271 B
Ruby
module LVGL::Introspection
|
|
def self.debug?()
|
|
LVGL::FFI.lv_introspection_is_debug != 0
|
|
end
|
|
def self.simulator?()
|
|
LVGL::FFI.lv_introspection_is_simulator != 0
|
|
end
|
|
def self.use_assert_style?()
|
|
LVGL::FFI.lv_introspection_use_assert_style != 0
|
|
end
|
|
end
|