mdebase/mpanel/taskbar/module.c

12 lines
256 B
C
Raw Permalink Normal View History

2025-12-21 16:05:51 +09:00
#include <Mw/Milsko.h>
2025-12-24 23:42:12 +09:00
#include <xemil.h>
2025-12-21 16:05:51 +09:00
2025-12-28 17:29:00 +09:00
MwWidget module(MwWidget box, xl_node_t* node) {
2025-12-21 16:05:51 +09:00
MwWidget b = MwCreateWidget(MwFrameClass, "taskbar", box, 0, 0, 0, 0);
2025-12-28 17:29:00 +09:00
return b;
2025-12-21 16:05:51 +09:00
}
2025-12-28 18:06:55 +09:00
void module_destroy(MwWidget box, MwWidget user) {
MwDestroyWidget(user);
}