1
0
forked from vitrine/wmaker

Expose a Rust type for WMenu.

This commit is contained in:
2025-09-09 22:18:30 -04:00
parent 6d09fbff93
commit 5817c1f032
2 changed files with 4 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ pub mod app_menu;
pub mod defaults;
pub mod dock;
pub mod icon;
pub mod menu;
pub mod screen;
pub mod window;

3
wmakerlib/src/menu.rs Normal file
View File

@@ -0,0 +1,3 @@
use std::ffi::c_void;
pub type Menu = c_void;