mdebase/mpanel/separator/module.c

13 lines
310 B
C
Raw Normal View History

2025-12-17 22:56:15 +09:00
#include <Mw/Milsko.h>
2025-12-24 23:42:12 +09:00
#include <xemil.h>
2025-12-17 22:56:15 +09:00
2025-12-28 17:29:00 +09:00
MwWidget module(MwWidget box, xl_node_t* node) {
return MwVaCreateWidget(MwSeparatorClass, "separator", box, 0, 0, 0, 0,
MwNfixedSize, 10,
MwNorientation, MwVERTICAL,
NULL);
2025-12-17 22:56:15 +09:00
}
2025-12-28 18:06:55 +09:00
void module_destroy(MwWidget box, MwWidget user) {
MwDestroyWidget(user);
}